Stats
Links
Categories
Complete autonomous development system for agents
npx claudepluginhub vivekmano27/agent-orchestrator35 agents, 5 teams, 27 commands, 67 skills, hooks, and 3 rules for full development
| Component | Count | Included? |
|---|---|---|
| Agents | 30 | YES |
| Agent Teams | 5 | YES |
| Commands | 26 | YES |
| Skills | 66 | YES |
| Hooks | 1 (hooks.json) | YES |
| Rules | 3 | YES |
| Steering Docs | 3 | YES |
| CLAUDE.md | 1 | YES |
| Plugin Manifest | 2 | YES |
| Install Script | 1 | YES |
| README | 1 | YES |
This is ONE package. Nothing else to install. No separate downloads.
# Run Claude Code with plugin directory
claude --plugin-dir /path/to/solo-dev-orchestrator/plugins/project-orchestrator
# Or for GitHub-hosted marketplace
claude plugin marketplace add your-github/solo-dev-orchestrator
claude plugin install solo-dev-orchestrator
# Clone the repo
git clone your-github/solo-dev-orchestrator /tmp/plugin
# Run installer (installs to current project)
cd your-project
bash /tmp/plugin/install.sh .
# Or install globally
bash /tmp/plugin/install.sh ~
PLUGIN=/path/to/solo-dev-orchestrator/plugins/project-orchestrator
cp -r $PLUGIN/agents/* your-project/.claude/agents/
cp -r $PLUGIN/commands/* your-project/.claude/commands/
cp -r $PLUGIN/skills/* your-project/.claude/skills/
cp -r $PLUGIN/hooks/* your-project/.claude/hooks/
cp -r /path/to/solo-dev-orchestrator/steering/* your-project/.claude/steering/
cp -r /path/to/solo-dev-orchestrator/rules/* your-project/.claude/rules/
cp /path/to/solo-dev-orchestrator/CLAUDE.md your-project/
cd your-project && claude
> /check-agents # All agents + teams loaded?
> /status # Project dashboard
> /pending # Any tasks waiting?
> /build-feature "Add user authentication with JWT and refresh tokens"
The orchestrator will:
| Command | Description |
|---|---|
/build-feature <desc> | End-to-end feature (auto-classifies SMALL/MEDIUM/BIG) |
/new <desc> | Start new project or feature — full agent pipeline |
/add-feature <desc> | Add feature to in-progress pipeline (smart cascade) |
/start <desc> | Alias for /new |
/quick-fix <error> | Autonomous bug fix (no approval needed) |
/init-project <name> | Full monorepo scaffold (the FIRST command for new projects) |
/setup-service <name> <type> | Scaffold new NestJS or Python microservice |
/run-tests | Complete test suite across ALL services |
/deploy <env> | Deploy to staging or production |
/review-pr <branch> | 3-way parallel review (code + security + performance) |
| Command | Description |
|---|---|
/status | Full project dashboard |
/pending | Pending tasks by priority + blockers |
/check-agents | Verify all agents loaded + healthy |
/check-teams | Agent team activity + progress |
/health-check | Service health (API, DB, Redis) |
/context-check | Context window usage + tips |
/logs | View agent activity log and progress |
/cost-track | Track API token usage and costs per agent |
| Command | Description |
|---|---|
/retry-failed | Retry failed tasks with new approach |
/digest | Generate session summary |
/sprint-plan <goal> | Create sprint plan from backlog |
/generate-types | Generate TS/Dart from API spec |
/migration <action> <svc> | Database migration management |
/backup <name> | Create named checkpoint for easy rollback |
/rollback <target> | Undo last agent changes (by commit, count, or checkpoint) |
/switch-model <agent> <model> | Switch agent model between Opus and Sonnet |
| Size | Files | What Happens | You Do |
|---|---|---|---|
| SMALL | 1-3 | Fully autonomous | Nothing |
| MEDIUM | 4-10 | Agents plan -> you approve -> they build | Approve plan |
| BIG | 10+ | Full SDD gates at 4 checkpoints | Approve at gates |
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations