mit einem Klick
autopilot
从想法到可运行代码的全自主执行
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
从想法到可运行代码的全自主执行
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
oh-my-kimi 的目录入口,包含面向 Kimi CLI 的 agent、skill、hook 与 MCP 套件,衍生自 oh-my-* 谱系。
面向密钥、注入、authz/authn、不安全 IO、依赖与数据外泄风险的安全评审
证据驱动的追踪通道,在 Kimi 的 Agent 工具中编排互相竞争的 tracer 假设
LLM Wiki —— 跨会话持续累积的 markdown 知识库(Karpathy 模型)
面向作家的 agentic 记忆系统 —— 跟踪人物、关系、场景与主题
跑只读的深度仓库分析,返回一份带置信度排序的综合结论,附具体文件引用、清晰区分证据与推断。当用户说 'analyze'、'investigate'、'why does'、'what's causing',或在提任何改动方案之前需要跨文件的有据解释时使用。
| name | autopilot |
| description | 从想法到可运行代码的全自主执行 |
| argument-hint | <product idea or task description> |
| level | 4 |
<Use_When>
<Do_Not_Use_When>
plan skillralph 或委派给 executor agentplan --review<Why_This_Exists> 大多数非平凡软件任务需要多个阶段协同:理解需求、设计方案、并行实现、测试、验证质量。Autopilot 自动编排所有这些阶段,让用户只用描述自己想要什么,就能拿到可工作的代码,而不必管理每一步。 </Why_This_Exists>
<Execution_Policy>
/oh-my-kimi:cancel 取消;进度被保留以便恢复
</Execution_Policy>Phase 1 - Planning:从规格创建实现计划
.omk/plans/autopilot-impl.mdPhase 2 - Execution:用 Ralph + Ultrawork 实现计划
Phase 3 - QA:循环直至全部通过(UltraQA 模式)
Phase 4 - Validation:并行做多视角审查
Phase 5 - Cleanup:成功完成后删除所有状态文件
.omk/state/autopilot-state.json、ralph-state.json、ultrawork-state.json、ultraqa-state.json/oh-my-kimi:cancel 干净退出
<Tool_Usage>
Agent(subagent_type="oh-my-kimi:architect", ...) 做 Phase 4 架构验证Agent(subagent_type="oh-my-kimi:security-reviewer", ...) 做 Phase 4 安全审查Agent(subagent_type="oh-my-kimi:code-reviewer", ...) 做 Phase 4 质量审查<Escalation_And_Stop_Conditions>
/deep-interview 做苏格拉底式澄清,或暂停并向用户求澄清后再继续
</Escalation_And_Stop_Conditions><Final_Checklist>
.claude/omc.jsonc(项目)或 ~/.config/claude-omc/config.jsonc(用户)的可选设置:
{
"autopilot": {
"maxIterations": 10,
"maxQaCycles": 5,
"maxValidationRounds": 3,
"pauseAfterExpansion": false,
"pauseAfterPlanning": false,
"skipQa": false,
"skipValidation": false
}
}
如果 autopilot 被取消或失败,再次运行 /oh-my-kimi:autopilot 可以从停下的位置恢复。
卡在某个阶段? 检查 TODO 列表里被阻塞的任务,看一眼 .omk/autopilot-state.json,或者取消重来。
QA 循环用尽? 同一错误重复 3 次说明是根本性问题。审视错误模式;可能需要人工介入。
验证一直失败? 看具体问题。可能是需求太模糊 —— 取消并提供更多细节。
当 autopilot 收到模糊输入时,Phase 0 可以转向 /deep-interview 做苏格拉底式澄清:
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]
如果 .omk/specs/deep-interview-*.md 已经有 deep-interview 规格,autopilot 会直接把它作为 Phase 0 输出(该规格已经在清晰度上经过数学化验证)。
推荐的完整管道串起三道质量闸口:
/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)
当 autopilot 检测到 ralplan 共识方案(.omk/plans/ralplan-*.md 或 .omk/plans/consensus-*.md)时,会跳过 Phase 0(Expansion)与 Phase 1(Planning),因为该方案已经:
Autopilot 直接从 Phase 2(通过 Ralph + Ultrawork 执行)开始。