Planning pattern for structurally articulable tasks. Planner defines stages and dependencies upfront; ReAct handles local uncertainty within each step.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Planning pattern for structurally articulable tasks. Planner defines stages and dependencies upfront; ReAct handles local uncertainty within each step.
Agentic Planning Pattern
[!TIP]
TL;DR: Use this pattern when the task structure IS articulable before execution. The planner defines stages and dependencies; ReAct handles local uncertainty within each stage.
Key Principle: "Planning exposes dependencies early and avoids mid-execution surprises."
Pattern Overview
The planning pattern is based on two assumptions:
The major structure of the task can be identified upfront
Defining an execution roadmap improves downstream reliability
The agent first creates a plan, then executes it—typically using ReAct for each step to handle local uncertainty.
generate_catalyst_questions — Question the plan's assumptions
MCP Server Usage
mcp-logic — Prove dependency ordering constraints
verifier-graph — Build causal DAG of the plan
sheaf-consistency-enforcer — Track plan vs. execution consistency
Workflow Template
1. PLANNING PHASE:
a. run_agem_cycle with "Analyze task and create execution plan"
b. List stages with dependencies
c. Identify checkpoints
d. Validate plan structure
2. EXECUTION PHASE:
For each stage in plan order:
a. Check prerequisites are met
b. Run ReAct within stage
c. Validate stage output
d. Move to next stage or replan
3. ON PLAN ABANDONMENT:
→ Switch to lightweight planning + ReAct