plannerlisted
Install: claude install-skill rjmurillo/ai-agents
# Planner Skill
## Purpose
Two workflows for complex tasks:
1. **Planning workflow** (planner.py): Create and review implementation plans
2. **Execution workflow** (executor.py): Execute approved plans through delegation
## Invocation Routing
**Invoke planner.py** when user asks to:
- "plan", "design", "architect" a feature
- "review" an existing plan
- Break down a complex task into milestones
**Invoke executor.py** when user asks to:
- "execute", "implement", "run" a plan
- "resume" or "continue" execution
- Provides a plan file path for implementation
---
## When to Use
Use the planner skill when the task has:
- Multiple milestones with dependencies
- Architectural decisions requiring documentation
- Migration steps that need coordination
- Complexity that benefits from forced reflection pauses
## When to Skip
Skip the planner skill when the task is:
- Single-step with obvious implementation
- A quick fix or minor change
- Already well-specified by the user
---
## Scripts
| Script | Purpose |
|--------|---------|
| `scripts/planner.py` | Planning and review workflow with step-based state management |
| `scripts/executor.py` | Execution workflow for approved plans with milestone delegation |
## Triggers
| Trigger Phrase | Operation |
|----------------|-----------|
| `plan this feature` | planner.py (planning phase) |
| `create implementation plan` | planner.py (planning phase) |
| `review the plan and pick up next item` | executor.py (execution phase) |