cruise-control
Autonomous development orchestrator that plans, builds, and validates applications
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Autonomous development orchestrator that plans, builds, and validates applications
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | cruise-control |
| description | Autonomous development orchestrator that plans, builds, and validates applications |
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