From planner
This skill should be loaded during plan mode, when creating a plan, implementation planning, architecture design, feature breakdown, task breakdown, project planning, or solution design. Provides enhanced planning methodology with complexity scoring, sub-problem decomposition, and plan review.
How this skill is triggered — by the user, by Claude, or both
Slash command
/planner:planning-methodologyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Enhanced workflow for the built-in plan mode. Uses a draft-score-design loop: load project constraints early, draft a lightweight plan, score complexity against the draft, then flesh out the full design.
Enhanced workflow for the built-in plan mode. Uses a draft-score-design loop: load project constraints early, draft a lightweight plan, score complexity against the draft, then flesh out the full design.
Before launching Explore subagents, try to load local-plan-standards. If found, extract its rules as planning constraints - these may inform what to explore (e.g., design patterns to follow, architectural boundaries, conventions to verify). If not found, proceed without constraints.
Launch Explore Task subagents to understand the codebase, informed by any loaded constraints. Instruct them to also:
Launch a Plan Task subagent to create a lightweight structural plan for the full task. Provide it with:
The draft should include:
This draft is not the final plan - its purpose is to give complexity scoring a concrete artifact to assess.
Score the task across 7 dimensions (1-10 each) based on the draft plan. The draft is intentionally lightweight and will understate rough edges - when uncertain, round up:
| Dimension | 1-3 (Low) | 4-6 (Moderate) | 7-10 (High) |
|---|---|---|---|
| Scope | 1-3 files, single component | 4-9 files, 2-3 components | 10+ files, cross-cutting |
| Novelty | Extending existing pattern | Adapting known pattern to new context | New pattern, no existing precedent |
| Dependencies | No external integration | 1-2 integration points, well-documented | 3+ integrations, unclear interfaces |
| Ambiguity | Clear requirements, obvious approach | Some open questions, 2-3 viable approaches | Underspecified, requires research or user clarification |
| Risk | Easily reversible, local impact | Moderate blast radius, testable | Hard to reverse, wide blast radius, affects shared state |
| Concurrency | Sequential, no shared state | Some async/parallel, manageable state | Complex state management, race conditions possible |
| Domain | Standard CRUD/glue code | Moderate algorithmic complexity | Advanced algorithms, specialized domain knowledge |
Compute the composite score as a weighted average (Scope and Novelty at 1.5x):
composite = (scope*1.5 + novelty*1.5 + dependencies + ambiguity + risk + concurrency + domain) / 8.0
Present the assessment to the user:
**Complexity**: N/10 - 1-line rationale
| Dimension | Score | Rationale |
|-----------|-------|-----------|
| Scope | N | brief note |
| Novelty | N | brief note |
| Dependencies | N | brief note |
| Ambiguity | N | brief note |
| Risk | N | brief note |
| Concurrency | N | brief note |
| Domain | N | brief note |
Flesh out the draft into a detailed plan using Plan Task subagents. First, classify the task tier to determine whether to decompose.
Classify the tier, checking from most to least complex:
When decomposing, aim for sub-problems that would individually score below 5. If that granularity isn't achievable, still decompose as far as practical - any reduction in complexity helps. Only skip decomposition if the task is truly indivisible. Launch parallel Plan subagents for decomposed sub-problems, or a single Plan subagent otherwise.
Every Plan subagent receives:
Each plan should include: approach, files to modify (verified against codebase), ordered implementation steps, interfaces with sibling sub-problems (if decomposed), and risks.
Include at the top of the plan file:
**Complexity**: N/10 (tier) - 1-line rationale
After all parallel Plan subagents complete, synthesize sub-plans into a single plan:
Before calling ExitPlanMode:
planner:review-plan, passing the plan file pathnpx claudepluginhub tvishwanadha/skills --plugin plannerCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.