supaclaude
v1.0.0
Published
Bootstrap specialist AI agents into any project, then launch Claude Code.
Maintainers
Readme
superclaude
Bootstrap specialist AI agents into any project, then launch Claude Code.
Install
npm install -g superclaudeUsage
cd your-project/
superclaudeThat's it. superclaude creates the agent files in your project directory and launches claude.
All arguments are passed through to claude:
superclaude "fix the login bug" # launch with a prompt
superclaude --resume # resume a previous session
superclaude --model opus # pick a modelWhat it creates
your-project/
CLAUDE.md ← Orchestrator rules (how agents coordinate)
PROJECT_BIBLE.md ← Living knowledge base
.agents/
drift.md ← Drift Detective
dependency.md ← Dependency Sentinel
bible.md ← Project Bible keeperSafe to run repeatedly — existing files are never overwritten.
The Agents
Drift Detective
Detects configuration drift between your intended state (code, config, docker-compose) and the actual running environment. Run it before deploys or after infrastructure changes.
"Run the Drift Detective on the current environment."
Dependency Sentinel
Audits dependency health across all services — security vulnerabilities, outdated packages, license issues. Supports npm, pip, Go modules, Cargo, Bundler, Composer, and more.
"Run the Dependency Sentinel across all services."
Project Bible
Maintains PROJECT_BIBLE.md as a living record of architecture decisions, completed features, incidents, and conventions. Keeps institutional knowledge from getting lost.
"Update the Project Bible based on what was just done."
Orchestrator Rules
The generated CLAUDE.md enforces these rules across all agents:
- Never modify production databases without explicit confirmation
- Never push to git without running tests first
- If a task is ambiguous, write a
CLARIFY.mdlisting questions — don't guess - Log all significant actions to
PROJECT_BIBLE.mdvia the Bible agent - Prefer reversible changes; flag irreversible ones
- Each agent stays within its defined scope
Requirements
- Claude Code (
npm install -g @anthropic-ai/claude-code) - Node.js >= 18
License
MIT
