Overview & Purpose
starter-plan is a starter workflow for for the primary agent loop: PLAN. It ensures disciplined execution of reasoning frameworks throughout this critical phase.
Execution Workflow
- Orchestrate Planning Pipeline (
orchestration-suggest): Analyze prompt and select optimal sub-skill sequences. - Discover Requirements & Constraints (
socratic-method): Probe hidden assumptions, non-functional requirements, and boundary conditions. - Map System Architecture (
systems-thinking): Identify component interconnections, feedback loops, and use points. - Explore Alternative Plans (
tree-of-thought): Evaluate multiple strategic execution branches using heuristic scoring. - Set Scope & Hard Boundaries (
ulysses-protocol): Lock in strict scope limits and stopping criteria to prevent creep. - Stress-Test & Red-Team Plan (
pdr-reasoning): Predict failure modes and build contingency safeguards into the plan. - Serialize Plan State (
session-export): Export the verified plan to disk for execution hand-off.
Expected Output Contract
### Agentic Loop Phase: [STARTER-PLAN]
- **Phase Status**: [Complete / In Progress]
- **Key Deliverables**: [Summary of Phase Output]
- **Hand-off Artifact**: [Exported State / Implementation Code]
Scripts
scripts/starter_plan.py- State serialization and execution helper for starter-plan.
Gotchas
- Ensure
starter-planhas exported a valid plan state before triggeringstarter-implement.