Planning pattern for structurally articulable tasks. Planner defines stages and dependencies upfront; ReAct handles local uncertainty within each step.
Installation
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.
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