一键导入
autopilot
Full OMX-style autonomous pipeline for Omagy: interview, plan, goal execution, optional team, review, and UltraQA.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Full OMX-style autonomous pipeline for Omagy: interview, plan, goal execution, optional team, review, and UltraQA.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
[OMAGY] Run an anti-slop cleanup/refactor/deslop workflow
Run read-only deep repository analysis with ranked synthesis, concrete evidence, and explicit Evidence/Inference/Unknown boundaries.
Professor-critic research workflow with durable Omagy artifacts for agy.
Stateful validator-gated research loop with artifact-gated completion.
[Omagy] Bounded best-practice research wrapper using official/upstream evidence first
Cancel the active Omagy workflow or all Omagy workflow state.
| name | autopilot |
| description | Full OMX-style autonomous pipeline for Omagy: interview, plan, goal execution, optional team, review, and UltraQA. |
Autopilot is the strict autonomous delivery orchestrator for non-trivial work. Its default contract is:
/omagy:deep-interview -> /omagy:ralplan -> /omagy:ultragoal -> /omagy:team when needed -> /omagy:code-review -> /omagy:ultraqa
It records each phase artifact in .omagy/state/autopilot-state.json, gates on
clean review, runs UltraQA after review, and routes non-clean review or QA
findings back into the pipeline instead of claiming completion.
/omagy:autopilot, autopilot, auto pilot, autonomous,
build me, create me, make me, full auto, or handle it all./omagy:plan or
/omagy:ralplan./omagy:ralph or direct
implementation./omagy:code-review.Start or resume with the runtime CLI:
omagy autopilot status --json
omagy autopilot start --input '{"task":"<task>","desired_outcome":"<outcome>"}' --json
omagy autopilot next --json
Use skip_deep_interview:true only when the user explicitly provides a
launch-ready spec or asks to skip clarification. Use team_required:true when
parallel execution is already known to be required.
Autopilot state carries:
current_phaseiterationreview_cycleqa_cycleteam_requiredphase_cycle: ["deep-interview","ralplan","ultragoal","team","code-review","ultraqa"]handoff_artifacts.context_snapshot_pathhandoff_artifacts.deep_interviewhandoff_artifacts.ralplanhandoff_artifacts.ultragoalhandoff_artifacts.teamhandoff_artifacts.code_reviewhandoff_artifacts.ultraqareview_verdictqa_verdictreturn_to_ralplan_reasonreturn_to_ultragoal_reasonBefore phase work, Autopilot creates or reuses a grounded context snapshot
under .omagy/context/ and carries that path through all handoffs.
deep-interviewRun /omagy:deep-interview from the context snapshot unless explicitly skipped.
Record the crystallized spec and handoff:
omagy autopilot record-phase --input '{"phase":"deep-interview","artifacts":{"spec_path":"<path>","handoff_path":"<path>","ambiguity_score":0.18}}' --json
ralplanRun /omagy:ralplan from the context snapshot and interview artifact. If this
is a return from non-clean review, include return_to_ralplan_reason and the
review artifacts as planning input.
omagy autopilot record-phase --input '{"phase":"ralplan","artifacts":{"prd_path":"<path>","test_spec_paths":["<path>"],"team_required":false}}' --json
ultragoalRun /omagy:ultragoal from the approved planning artifacts. Ultragoal owns the
durable goal ledger and execution evidence. If this is a return from failed
UltraQA, include return_to_ultragoal_reason and the QA artifacts.
omagy autopilot record-phase --input '{"phase":"ultragoal","artifacts":{"goals_path":".omagy/ultragoal/goals.json","ledger_path":".omagy/ultragoal/ledger.jsonl","verification_evidence":["<evidence>"],"changed_files":["<path>"],"team_required":false}}' --json
If team_required, needs_team, or execution_owner:"team" is recorded,
Autopilot routes to the team phase before review.
teamRun /omagy:team only when the planning or execution artifact requires
parallel execution. Team workers may execute bounded tasks, but Ultragoal
remains the durable goal source of truth.
omagy autopilot record-phase --input '{"phase":"team","artifacts":{"team_name":"<team>","task_count":3,"verification_evidence":["<evidence>"]}}' --json
code-reviewRun /omagy:code-review on the Ultragoal and Team outputs. Record the verdict:
omagy autopilot record-review --input '{"review_verdict":{"recommendation":"APPROVE","architectural_status":"CLEAR","final_recommendation":"APPROVE","clean":true,"summary":"Review clean."},"review_report_path":"<path>"}' --json
If the verdict is not clean, Autopilot transitions back to ralplan and keeps
the review findings in handoff_artifacts.code_review.
ultraqaRun /omagy:ultraqa only after clean code review. Record QA:
omagy autopilot record-qa --input '{"qa_verdict":{"clean":true,"skipped":false,"summary":"UltraQA clean."},"scenario_matrix_path":".omagy/reports/ultraqa-report.md","evidence":["<evidence>"]}' --json
If UltraQA is not clean, Autopilot transitions back to ultragoal and keeps
the QA findings in handoff_artifacts.ultraqa.
When the user says continue, resume, or keep going, run:
omagy autopilot next --json
Continue from current_phase; do not restart discovery and do not discard
handoff artifacts.
omagy autopilot cancel --json
Cancellation preserves handoff artifacts for manual recovery.
/omagy:deep-interview produced or was explicitly skipped due to a
launch-ready spec./omagy:ralplan produced or updated approved planning artifacts./omagy:ultragoal executed the approved plan and recorded durable goal
evidence./omagy:team ran only when artifacts required parallel execution./omagy:code-review returned a clean verdict (APPROVE + CLEAR)./omagy:ultraqa returned a clean or explicitly skipped QA verdict.review_verdict.clean is true and qa_verdict.clean or
qa_verdict.skipped is true.complete or cancellation/blocker state is
preserved coherently.