بنقرة واحدة
autopilot
Full autonomous execution from idea to working code. Use when you want end-to-end autonomous development.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Full autonomous execution from idea to working code. Use when you want end-to-end autonomous development.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Multi-agent orchestration for PI: team coordination, autonomous execution, persistence loops, and requirements gathering. USE FOR: multi-agent development, parallel execution, code implementation, architecture design, security review, test automation, project planning. Commands: /skill:team, /skill:autopilot, /skill:ralph, /skill:deep-interview, /skill:plan, /skill:verify
Reactive team orchestration. Spawn workers, monitor completions, dynamically spawn newly unblocked tasks until all complete.
Cancel active execution modes and clean up state.
Socratic requirements gathering with ambiguity scoring. Use for clarifying vague ideas before building.
tmux-based multi-agent orchestration using pi-team CLI. Spawn multiple AI agents (PI, Claude, Codex, Gemini) in parallel tmux sessions. USE FOR: parallel implementation, multi-provider coordination, large-scale tasks, distributed work. Commands: /skill:pi-team spawn N:provider "task", /skill:pi-team status, /skill:pi-team aggregate, /skill:pi-team shutdown
Strategic planning with task breakdown and risk assessment. Use before starting complex work.
| name | autopilot |
| description | Full autonomous execution from idea to working code. Use when you want end-to-end autonomous development. |
| argument-hint | <product idea or task description> |
| level | 4 |
Full autonomous execution pipeline: spec → plan → execute → QA → validate.
/skill:autopilot "build a REST API for task management"
/skill:autopilot "create a user authentication system"
Phase 0: Requirements (deep-interview if vague)
Phase 1: Planning (architect + planner)
Phase 2: Execution (executor + parallel)
Phase 3: QA (tester + ultraqa)
Phase 4: Validation (verifier + reviewers)
Phase 5: Cleanup
If input is vague, use deep-interview first:
Input: "build me something cool"
→ Offer: Run deep-interview to clarify?
→ If yes: /skill:deep-interview → generates SPEC.md
→ If no: Proceed with analyst expansion
If input is clear, use explorer + analyst:
1. Explorer (haiku): Map relevant codebase areas
2. Analyst: Extract requirements from input
3. Architect: Create technical specification
Output: .omp/specs/autopilot-{slug}.md
Create implementation plan:
1. Architect: Create plan based on spec
2. Planner: Break into tasks, estimate
3. Critic: Validate plan feasibility
Output: .omp/plans/autopilot-impl.md
Implement using team or sequential:
Option A: /skill:team N:executor "implement plan"
Option B: Sequential executor passes
Execute independent tasks in parallel.
Run builds/tests in background (run_in_background: true).
Quality assurance cycling:
1. Tester: Add tests for new code
2. Build: npm run build
3. Typecheck: npx tsc --noEmit
4. Lint: npm run lint
5. Tests: npm test
If failures:
→ Fix issues
→ Repeat until all pass
→ Max 5 cycles, then escalate
Multi-perspective review:
1. Architect: Functional completeness
2. Security-reviewer: Vulnerability check
3. Code-reviewer: Quality review
All must approve. Fix and re-validate on rejection.
1. Delete state files
2. Summarize what was built
3. Report completion
Optional in .omp/config.json:
{
"autopilot": {
"maxQaCycles": 5,
"maxValidationRounds": 3,
"pauseAfterPlanning": false,
"skipQa": false,
"skipValidation": false
}
}
## Autopilot Complete
**Input:** "build a REST API for task management"
**Duration:** 45 minutes
**Phases:** 5/5 complete
### What Was Built
- REST API with CRUD endpoints
- PostgreSQL database
- JWT authentication
- Input validation
- Unit tests (85% coverage)
### Files Created
- src/api/tasks/: 5 files
- src/db/: 3 files
- tests/: 4 files
### Verification
- ✅ Build passes
- ✅ Tests pass (52/52)
- ✅ TypeScript clean
- ✅ Security review passed
### Next Steps
- Deploy to staging
- Add integration tests
- Document API with OpenAPI