Orchestrator pipeline for Claude Code: plan, review, decompose, parallel workers, critic, merge
npx claudepluginhub kurtlehnardt/agentic-toolsOrchestrator pipeline for Claude Code: plan, review, decompose, parallel workers, critic, merge
Claude Code plugin that implements a full autonomous code factory. Give it an idea — it produces a running application.
/idea → /setup → /build → /test → /deploy → /ship
/status (anytime)
/teardown
| Skill | Purpose |
|---|---|
/idea | Raw idea → structured PRD with acceptance criteria and service manifest |
/setup | Detect required services, check vaults, generate .env, guide account creation |
/build | 7-phase implementation: plan → architect review → exec review → workers → critic → merge |
/test | Generate test suites for existing code without modifying implementation |
/deploy | Deploy to staging/production, run migrations, health check, rollback on failure |
/ship | Go-to-market engine: strategy doc, landing page, free tool, SEO, AEO infrastructure |
/status | Factory dashboard: active builds, scores, blockers, environment health |
/teardown | Clean up worktrees, delete merged branches, archive plans |
/idea — IntakeTakes a raw concept and produces a Product Requirements Document with measurable acceptance criteria, technical requirements, and a service manifest listing every external dependency.
/setup — EnvironmentReads the PRD (or scans the codebase), detects what services are needed, checks your credential vault (1Password CLI, AWS SSM, or .env files), and generates a complete environment configuration. For missing services, it produces a checklist with direct signup links.
/build — ImplementationThe core engine. Runs a 7-phase pipeline with scored quality gates:
/test — CoverageAnalyzes existing code for coverage gaps, prioritizes by risk (auth, payments, data mutations first), and generates comprehensive test suites following existing patterns. Does not modify implementation.
/deploy — ShipPre-flight validation, database migrations, deployment to Vercel/hosting platform, post-deployment health checks, and automatic rollback if health checks fail. Production deploys require human confirmation.
/status — DashboardRead-only snapshot of the factory: active worktrees, review scores, blockers, environment health, backlog status. No subagents dispatched — reads local state directly.
/ship — Go-to-MarketTakes any app (codebase, URL, or description) and produces a tailored marketing strategy + working deliverables. Runs a 5-phase pipeline:
Adapts to product maturity: early-stage gets positioning + strategy, growth-stage gets concrete deliverables and scaling tactics.
/teardown — CleanupRemoves merged worktrees and branches, archives completed plan files, prunes orphaned references. Never deletes unmerged work without human confirmation.
Add to your ~/.claude/settings.json:
{
"enabledPlugins": {
"agentic-tools@C:\\path\\to\\agentic-tools": true
}
}
Or clone and reference:
git clone https://github.com/KurtLehnardt/agentic-tools.git
# Start with an idea
/idea I want a SaaS that converts podcast episodes into blog posts
# Set up the environment
/setup
# Build it
/build
# Add test coverage
/test
# Ship it
/deploy
# Go to market
/ship
# Check on things
/status
# Clean up after merge
/teardown
Default pass threshold is 9.5/10. Edit scoring rules in:
skills/build/references/architect-review-prompt.mdskills/build/references/executive-review-prompt.mdskills/build/references/critic-review-prompt.mdModify skills/build/references/ralph-worker-prompt.md for commit conventions, validation commands, scope rules.
Modify skills/test/references/test-writer-prompt.md for test framework preferences, coverage targets.