Plan
Use Claude Code like a Director, not a Programmer. MIT toolkit with Auto-Loop, guided setup, 27 commands, 14 agents, and 32 skills.
npx -y skills add claude-world/director-mode-lite --skill planAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Break a complex task into an ordered, dependency-aware task list with estimates and verification steps. Use when a request spans multiple components or days, before starting large features, or when the user runs /plan.
SKILL.md
1.3 KB, 275 tokens by cl100k_base, as published. Nobody here has run it
Task Planning
Create a detailed execution plan for the current task.
Process
-
Analyze Requirements
- What is the goal?
- What are the constraints?
- What resources are available?
-
Break Down Tasks
- Decompose into specific, actionable steps
- Each task should be completable independently
- Estimate relative complexity (small/medium/large)
-
Create Task List
- Use TodoWrite tool to track progress
- Mark priorities and dependencies
- Keep tasks granular
-
Identify Risks
- What could go wrong?
- What are the unknowns?
- What needs clarification?
Task Template
## Task: [Task Name]
### Goal
[What this task achieves]
### Steps
1. [ ] [Step 1]
2. [ ] [Step 2]
3. [ ] [Step 3]
### Dependencies
- Requires: [other tasks]
- Blocks: [dependent tasks]
### Acceptance Criteria
- [ ] [Criterion 1]
- [ ] [Criterion 2]
Guidelines
- Keep tasks small (completable in one session)
- Be specific about acceptance criteria
- Identify dependencies early
- Update plan as you learn more