autopilot
Full autonomous execution from idea to working code
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Full autonomous execution from idea to working code
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Cancel any active OMQ mode (autopilot, ralph, ultrawork, ultraqa, swarm, ultrapilot, pipeline, team)
Configure notification integrations (Telegram, Discord, Slack) via natural language
Configure HUD display options (layout, presets, display elements)
Extract a learned skill from the current conversation
Diagnose and fix oh-my-qoder installation issues
Install or refresh oh-my-qoder for plugin, npm, and local-dev setups from the canonical setup flow
| name | autopilot |
| description | Full autonomous execution from idea to working code |
| argument-hint | <product idea or task description> |
| level | 4 |
<Use_When>
<Do_Not_Use_When>
plan skill insteadralph or delegate to an executor agentplan --review<Why_This_Exists> Most non-trivial software tasks require coordinated phases: understanding requirements, designing a solution, implementing in parallel, testing, and validating quality. Autopilot orchestrates all of these phases automatically so the user can describe what they want and receive working code without managing each step. </Why_This_Exists>
<Execution_Policy>
/oh-my-qoder:cancel at any time; progress is preserved for resume
</Execution_Policy>Phase 1 - Planning: Create an implementation plan from the spec
.omq/plans/autopilot-impl.mdPhase 2 - Execution: Implement the plan using Ralph + Ultrawork
Phase 3 - QA: Cycle until all tests pass (UltraQA mode)
Phase 4 - Validation: Multi-perspective review in parallel
Phase 5 - Cleanup: Delete all state files on successful completion
.omq/state/autopilot-state.json, ralph-state.json, ultrawork-state.json, ultraqa-state.json/oh-my-qoder:cancel for clean exit
<Tool_Usage>
Agent(subagent_type="oh-my-qoder:architect", ...) for Phase 4 architecture validationAgent(subagent_type="oh-my-qoder:security-reviewer", ...) for Phase 4 security reviewAgent(subagent_type="oh-my-qoder:code-reviewer", ...) for Phase 4 quality review<Escalation_And_Stop_Conditions>
/deep-interview for Socratic clarification, or pause and ask the user for clarification before proceeding
</Escalation_And_Stop_Conditions><Final_Checklist>
.omq-workspace marker at the parent directory so multiple sessions across sub-repos share one .omq/. Resolution order: OMQ_STATE_DIR > .omq-workspace > git > cwd. See docs/REFERENCE.md.Optional settings in .qoder/omq.jsonc (project) or ~/.config/qoder-omq/config.jsonc (user):
{
"autopilot": {
"maxIterations": 10,
"maxQaCycles": 5,
"maxValidationRounds": 3,
"pauseAfterExpansion": false,
"pauseAfterPlanning": false,
"skipQa": false,
"skipValidation": false
}
}
If autopilot was cancelled or failed, run /oh-my-qoder:autopilot again to resume from where it stopped.
Stuck in a phase? Check TODO list for blocked tasks, review .omq/autopilot-state.json, or cancel and resume.
QA cycles exhausted? The same error 3 times indicates a fundamental issue. Review the error pattern; manual intervention may be needed.
Validation keeps failing? Review the specific issues. Requirements may have been too vague -- cancel and provide more detail.
When autopilot is invoked with a vague input, Phase 0 can redirect to /deep-interview for Socratic clarification:
User: "autopilot build me something cool"
Autopilot: "Your request is open-ended. Would you like to run a deep interview first?"
[Yes, interview first (Recommended)] [No, expand directly]
If a deep-interview spec already exists at .omq/specs/deep-interview-*.md, autopilot uses it directly as Phase 0 output (the spec has already been mathematically validated for clarity).
The recommended full pipeline chains three quality gates:
/deep-interview "vague idea"
→ Socratic Q&A → spec (ambiguity ≤ 20%)
→ /ralplan --direct → consensus plan (Planner/Architect/Critic approved)
→ /autopilot → skips Phase 0+1, starts at Phase 2 (Execution)
When autopilot detects a ralplan consensus plan (.omq/plans/ralplan-*.md or .omq/plans/consensus-*.md), it skips both Phase 0 (Expansion) and Phase 1 (Planning) because the plan has already been:
Autopilot starts directly at Phase 2 (Execution via Ralph + Ultrawork).