Planning

SkillFiles & storage

Software implementation planning with file-based persistence (task_plan.md, findings.md, progress.md). Use when asked to "plan", "break down this feature", "implementation plan", or starting complex tasks needing >5 tool calls. Apply proactively before non-trivial coding.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Planning skill

What this skill tells your AI

The instructions your AI receives, as published by iliaal/whetstone in distillery/generated-skills/planning/SKILL.md and read by ahel’s review.

Core Principle

Context window = RAM (volatile, limited)
Filesystem     = Disk (persistent, unlimited)
→ Anything important gets written to disk.

Planning tokens are cheaper than implementation tokens. Front-load thinking; scale effort to complexity.

When to Plan

  • Always plan: multi-file changes, new features, refactors, >5 tool calls
  • Skip planning: single-file edits, quick lookups, simple questions

Planning Files

Create in project root before starting work:

FilePurposeUpdate When
task_plan.mdPhases, tasks, decisions, errorsAfter each phase
findings.mdResearch, discoveries, code analysisAfter any discovery
progress.mdSession log, test results, files changedThroughout session

Plan Template

# Plan: [Feature/Task Name]

## Approach
[1-3 sentences: what and why]

## Scope
- **In**: [what's included]
- **Out**: [what's explicitly excluded]

## Phase 1: [Name]
**Files**: [specific files, max 5-8 per phase]
**Tasks**:
- [ ] [Verb-first atomic task] — `path/to/file.ts`
- [ ] [Next task]
**Verify**: [specific test: "POST /api/users → 201", not "test feature"]
**Exit**: [clear done definition]

## Phase 2: [Name]
...

## Open Questions
- [Max 3, only truly blocking unknowns]

Phase Sizing Rules

Every phase must be context-safe:

  • Max 5-8 files touched
  • Max 2 dependencies on other phases
  • Fits in one 2-4 hour session (implementation + verification + fixes)
  • If a phase violates these → split it

Clarifying Questions

Scale to complexity:

  • Small task: 0-1 questions, assume reasonable defaults
  • Medium feature: 1-2 questions on critical unknowns
  • Large project: 3-5 questions (auth, data model, integrations, scope)

Only ask if truly blocking. Make reasonable assumptions for everything else.

Task Rules

  • Atomic: one logical unit of work per task
  • Verb-first: "Add...", "Create...", "Refactor...", "Verify..."
  • Concrete: name specific files, endpoints, components
  • Ordered: respect dependencies, sequential when needed
  • Verifiable: include at least one validation task per phase

Context Management Rules

SituationAction
Starting new phaseRead task_plan.md (refresh goals in attention window)
After any discoveryWrite to findings.md immediately
After completing phaseUpdate task_plan.md status, log to progress.md
After viewing image/PDFWrite findings NOW (multimodal content doesn't persist)
Resuming after gapRead all planning files
Just wrote a fileDon't re-read it (still in context)
Error occurredLog to task_plan.md, read relevant files for state

Error Protocol

ATTEMPT 1: Diagnose root cause → targeted fix
ATTEMPT 2: Different approach (different tool, library, method)
ATTEMPT 3: Question assumptions → search for solutions → update plan
AFTER 3 FAILURES: Escalate to user with what you tried

Never repeat the exact same failing action. Track attempts, mutate approach.

Iterative Refinement

For complex projects, iterate on the plan before implementing:

  1. Draft initial plan
  2. Review for gaps, missing edge cases, architectural issues
  3. Revise until suggestions become incremental
  4. Only then start implementation

5-Question Context Check

If you can answer these, your planning is solid:

QuestionSource
Where am I?Current phase in task_plan.md
Where am I going?Remaining phases
What's the goal?Approach section
What have I learned?findings.md
What have I done?progress.md

Anti-Patterns

Don'tDo Instead
Start coding without a planCreate task_plan.md first
State goals once and forgetRe-read plan before decisions
Hide errors and retry silentlyLog errors, mutate approach
Keep everything in contextWrite large content to files
Repeat failed actionsTrack attempts in plan file
Create vague tasks ("improve X")Concrete verb-first tasks with file paths
Plan phases with 12+ filesSplit into 5-8 file chunks
Plan at 100% capacityBudget for verification, fixes, and unknowns

Signals

GitHub stars
33
Forks
3
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
planning-2
Source
github.com/iliaal/whetstone