一键导入
plan-review
Use when a plan needs validation through a planner-critic loop. Triggers on "플랜 리뷰", "plan review", or when explicitly requested.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when a plan needs validation through a planner-critic loop. Triggers on "플랜 리뷰", "plan review", or when explicitly requested.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Loaded automatically at session start. Teaches the orchestrator how to route requests to skills and agents. Do not invoke manually.
Use when the user wants to explore an idea, design an approach, or think through a problem before implementing. Triggers on "고민", "논의", "아이디어", "brs".
Use when code review is needed. Triggers on "코드 리뷰", "리뷰해줘", "code review", or at completion of implementation.
Use to harvest `debt:` markers across the repo into a debt ledger and optionally persist it to the Obsidian vault. Triggers on "부채", "기술부채", "debt", "지름길 정리", "/debt". Read-only — does not modify code.
Use when the user wants to run an implementation plan. Triggers on "실행해줘", "구현해줘", "시작해줘", "execute", or after plan approval.
Implement an entire Figma page as Android Jetpack Compose screens by auto-splitting into frames with visual verification. Use whenever a user shares a figma.com/design URL and wants the page built as Compose code. Triggers on '안드로이드 피그마', 'Android Figma', 'Compose 구현'. Covers any multi-frame page. Does NOT apply to Figma asset downloads or single component edits.
| name | plan-review |
| description | Use when a plan needs validation through a planner-critic loop. Triggers on "플랜 리뷰", "plan review", or when explicitly requested. |
Iterative refinement of a plan through structured debate between planner and critic agents. Runs until the critic approves or max iterations reached.
Delegate to critic agent (complex category):
Review the plan against:
Output structured findings (CRITICAL / IMPORTANT / MINOR), then judge:
Requires codex-plugin-cc installed. Check
hud.json→codexfield. Iffalse, skip this phase entirely and proceed to Phase 2.
If Phase 1 result is REQUEST_CHANGES, skip Phase 1.5 entirely — Codex adversarial review only runs after critic APPROVE.
After Phase 1 critic outputs APPROVE, dispatch codex:codex-rescue agent to get a second opinion from a different model. This combats self-review bias by having GPT challenge the plan that Claude created.
How to dispatch:
Agent(subagent_type="codex:codex-rescue", prompt="""
You are reviewing a plan document as an adversarial reviewer.
Your job is to challenge the plan, find pitfalls, and identify hidden assumptions.
Focus on:
- Practical pitfalls the reviewer may have missed
- Alternative architectures worth considering
- Hidden assumptions in the plan
- Real-world failure modes
Plan content:
{plan_content}
Return your findings as structured JSON:
{ "verdict": "ALLOW" | "BLOCK", "findings": [...] }
""")
Handling Codex results:
Key constraint: Codex findings NEVER override the critic's APPROVE judgment. They are additional perspective only. The user has final say on whether to act on Codex feedback.
If the critic has findings, present them to the user. Ask if they agree with the critique.
If changes are needed, delegate to planner agent (complex category):
Loop back to Phase 1 with the revised plan.
Max iterations: 5. If CRITICAL findings persist after 5 rounds, present the best version to the user with remaining CRITICAL concerns noted and let the user decide whether to proceed or continue refining.
When critic outputs APPROVE: