Command Line Interface
Your AI team in the terminal
Install the CLI. Run pantheon init in your project. Talk to your agents without leaving the terminal.
bun add -g pantheon-cli$ pantheon signup
∞ Pantheon OS — Create Account
? API URL: http://localhost:3001
? Full name: Alex Chen
? Email: alex@startup.com
? Password: ••••••••
⠋ Creating account...
✓ Account created! Logged in as alex@startup.com
Credentials saved to ~/.pantheon/auth.json
Next steps:
pantheon init — Set up your first project
pantheon api-keys --create — Generate an API key for CI/scripts
All Commands
pantheon signupCreate a new Pantheon OS account
pantheon loginAuthenticate (email/password or API key)
pantheon initInitialize project — pick type, auto-detect stack
pantheon chat [agent]Interactive chat with any agent
pantheon ask <question>Quick one-shot question to Krishna
pantheon statusSystem health, approvals, agent routing
pantheon approvalsList and approve/reject pending agent actions
pantheon auditView recent audit log for this project
pantheon violationsVishvarupa threshold violations
pantheon doctorCheck all systems — local, server, connectors
pantheon connectorsList, connect, or disconnect services
pantheon memory [agent]View agent conversation history
pantheon whoamiView or edit profile, name, BYOM config
pantheon api-keysList, create, or revoke API keys
pantheon usageUsage stats — events, tokens, cost (30 days)
pantheon webhooksList, create, or delete webhook subscriptions
pantheon projectsList all projects or archive one
pantheon billingView plan, limits, upgrade, Stripe portal
pantheon healthProject health — MRR, runway, churn, PRs
pantheon preferencesView or remove learned agent preferences
pantheon briefMorning briefing from Yudhishthir
pantheon oracleOracle Report from Sahadev
pantheon review [file]Code review from Arjun
How It Works
Install & Login
Install the CLI globally. Login with your Pantheon OS account. Credentials are saved locally.
Initialize Project
Run `pantheon init` in your project directory. It auto-detects your stack, repo, and creates a .pantheon.json config.
Talk to Your Team
Chat with any agent from the terminal. They have full project context, persistent memory, and real tool access.
Configuration
Two files power the CLI — one per project, one per user.
.pantheon.jsonIn your project root
{
"projectId": "acme-saas",
"name": "Acme SaaS",
"repo": "acme/saas-platform",
"stack": "Next.js, TypeScript, Prisma",
"apiUrl": "https://api.pantheonos.dev"
}~/.pantheon/auth.jsonIn your home directory (private)
{
"accessToken": "eyJ...",
"apiUrl": "https://api.pantheonos.dev",
"email": "founder@startup.com"
}Ready to try?
Install the CLI, initialize your project, and start talking to your AI founding team in under 2 minutes.