Skip to content

Holocron

Holocron is a pluggable CLI that orchestrates infrastructure and repository operations through a capability system. Each capability (source control, secrets, deployments, etc.) is fulfilled by a plugin — configure which providers you use once in holocron.config.ts, then drive your entire project lifecycle through a single tool.

Packages

Package Description
@theholocron/cli The CLI itself — install globally or via pnpm exec
@theholocron/holocron-plugin-github source, ci, secrets, environments, issues
@theholocron/holocron-plugin-vercel deployment
@theholocron/holocron-plugin-1password vault
@theholocron/holocron-plugin-doppler vault
@theholocron/holocron-plugin-infisical vault
@theholocron/holocron-plugin-clerk auth
@theholocron/holocron-plugin-neon storage
@theholocron/holocron-plugin-postman tooling

Install

Terminal window
npm i -g @theholocron/cli
# or per-project:
pnpm add -D @theholocron/cli

Quick example

Terminal window
# Authenticate once
holocron auth set github.admin ghp_xxx
holocron auth set github.read ghp_yyy
# Apply full repo setup
holocron setup
# Sync repo metadata to GitHub
holocron sync
# Check all providers are reachable
holocron doctor

See Getting Started for the full walkthrough.