Use when a user asks for a plan for a coding task, to generate a clear, actionable, and atomic checklist.
Add this skill
npx mdskills install sickn33/concise-planningClear, actionable instructions for generating structured coding plans with good constraints
1---2name: concise-planning3description: Use when a user asks for a plan for a coding task, to generate a clear, actionable, and atomic checklist.4---56# Concise Planning78## Goal910Turn a user request into a **single, actionable plan** with atomic steps.1112## Workflow1314### 1. Scan Context1516- Read `README.md`, docs, and relevant code files.17- Identify constraints (language, frameworks, tests).1819### 2. Minimal Interaction2021- Ask **at most 1–2 questions** and only if truly blocking.22- Make reasonable assumptions for non-blocking unknowns.2324### 3. Generate Plan2526Use the following structure:2728- **Approach**: 1-3 sentences on what and why.29- **Scope**: Bullet points for "In" and "Out".30- **Action Items**: A list of 6-10 atomic, ordered tasks (Verb-first).31- **Validation**: At least one item for testing.3233## Plan Template3435```markdown36# Plan3738<High-level approach>3940## Scope4142- In:43- Out:4445## Action Items4647[ ] <Step 1: Discovery>48[ ] <Step 2: Implementation>49[ ] <Step 3: Implementation>50[ ] <Step 4: Validation/Testing>51[ ] <Step 5: Rollout/Commit>5253## Open Questions5455- <Question 1 (max 3)>56```5758## Checklist Guidelines5960- **Atomic**: Each step should be a single logical unit of work.61- **Verb-first**: "Add...", "Refactor...", "Verify...".62- **Concrete**: Name specific files or modules when possible.63
Full transparency — inspect the skill content before installing.