一键导入
plan-review
Send execution plans to GPT for structured review via Codex CLI. Use when you have a written plan and want independent validation before implementation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Send execution plans to GPT for structured review via Codex CLI. Use when you have a written plan and want independent validation before implementation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Autonomous build loop — debate, plan, implement, review, fix — all in one session with GPT review.
Bidirectional AI slop scanner — Claude + GPT independently analyze, then debate disagreements.
Get an independent GPT review via Codex CLI. Use when you want a second opinion on code, plans, or architecture from a different AI model.
Real Claude vs GPT multi-round debate. Use when you need a second opinion, want to debate architecture decisions, or evaluate competing approaches with multi-model collaboration.
| name | plan-review |
| description | Send execution plans to GPT for structured review via Codex CLI. Use when you have a written plan and want independent validation before implementation. |
| user-invocable | true |
/plan-review <plan-file-or-description>
Sends a Claude-authored execution plan to GPT via codemoot plan review for structured critique. GPT returns ISSUE (HIGH/MEDIUM/LOW) and SUGGEST lines with file-level references. Uses session resume for iterative refinement.
When the user invokes /plan-review, follow these steps:
If the user provides a file path: Use it directly.
If the user describes what to review:
/tmp/plan-review.md)If reviewing the current conversation's plan:
cd C:\Users\ramka\Desktop\cowork\codemoot\packages\cli && npx codemoot plan review <plan-file> [options]
Options:
--phase <N> — Review only a specific phase--build <buildId> — Link to a build run--timeout <ms> — Override default timeout (default: 300000)--output <file> — Save full review to file- — Read plan from stdinThe command outputs JSON:
{
"planFile": "path",
"verdict": "needs_revision",
"score": 5,
"issues": [
{ "severity": "high", "message": "..." },
{ "severity": "medium", "message": "..." }
],
"suggestions": ["..."],
"review": "truncated to 2KB...",
"sessionId": "...",
"usage": { "inputTokens": ..., "outputTokens": ..., "totalTokens": ... }
}
Present as:
## GPT Plan Review
**Score**: X/10 | **Verdict**: APPROVED/NEEDS_REVISION
### Issues
- [HIGH] description with file references
- [MEDIUM] description
### Suggestions
- suggestion text
Session: <sessionId> | Tokens: <totalTokens> | Duration: <durationMs>ms
Ask the user if they want to revise and re-submit:
codemoot plan review — session resume gives GPT context of prior reviewreview field is capped to 2KB. Use --output for full textplan generate