Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
cruise-control
// Autonomous development orchestrator that plans, builds, and validates applications
$ git log --oneline --stat
stars:0
forks:0
updated:2026년 2월 1일 23:54
SKILL.md
// Autonomous development orchestrator that plans, builds, and validates applications
| 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