From infinite-improbability-drive
Autonomous development orchestrator that plans, builds, and validates applications
How this skill is triggered — by the user, by Claude, or both
Slash command
/infinite-improbability-drive:cruise-controlThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Autonomously orchestrates complete development cycles from high-level prompts through three phases: Plan, Build, and Validate.
Autonomously orchestrates complete development cycles from high-level prompts through three phases: Plan, Build, and Validate.
When you need to build an entire application or feature autonomously:
/cruise-control "Build a sqlite gui interface in rust with jwt authentication"
With options:
/cruise-control --max-parallel 5 "Build microservices architecture"
/cruise-control --auto-approve --test-level strict "Build and test"
Uses spawn-team in ping-pong mode:
Output:
Uses spawn-team in sequential mode with parallelism:
Handles failures by:
Single spawn audits the result:
Generates comprehensive audit report.
Plans require GitHub PR approval:
--auto-approve for tests/CI to skip waitingIn .infinite-probability/cruise-control.toml:
[planning]
ping_pong_iterations = 5
[building]
max_parallel = 3
pr_strategy = "per-task" # per-task | batch | single
[validation]
test_level = "functional" # basic | functional | strict
Use cruise-control when:
Use basic spawn when:
User: /cruise-control "Build a REST API with user auth and data endpoints"
Phase 1 (Plan):
- Generates 8 tasks with dependency graph
- Creates PR #42 with plan
- Waits for approval...
- Approved!
Phase 2 (Build):
- Task 1: Set up project structure ✓
- Task 2: Implement JWT auth ✓
- Task 3: Create database models ✓
- Task 4: Implement user endpoints (depends on 2,3) ✓
- ...
- 8/8 tasks completed
Phase 3 (Validate):
- Build: ✓
- Tests: 12/12 passed
- Quality: 8.5/10
- Findings: 2 warnings (no rate limiting, missing input validation)
Result: SUCCESS
PR: https://github.com/org/repo/pull/50
Report: docs/plans/2026-02-01-api-audit-report.md
npx claudepluginhub epiphytic/infinite-improbability-drive-v0Orchestrates a full build pipeline from PRD: plans tasks, implements in parallel, and reviews results. Routes simple work to a lighter workflow.
Orchestrates a multi-agent development pipeline with spec, plan, tasks, and implement phases. Use for building features, fixing bugs, or executing complex plans via fan-out workers with consensus voting.
Chains plan → build → test → review → ship into a structured feature lifecycle. Use when starting a new feature or project iteration and want a full pipeline from idea to deployment.