Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Create zero-context implementation plans with bite-sized tasks — use for multi-step feature planning
.claude/skills/nyldn-skill-writing-plans/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-07 | ✗→✓ | ▲ Improved | 205% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 91% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 375% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 111% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 175% | 0% |
Load skills/blocks/engineering-method-selection.md from the installed plugin and apply only the methods relevant to this task. Preserve this entry point's execution contract and output format. Read referenced skills as instructions; do not invoke the current command recursively or add provider calls from a seat.
When this skill is invoked, you MUST produce a full implementation plan following the structure below. You are PROHIBITED from:
The user asked for a plan, not an implementation. Write the plan first.
Your first output line MUST be: 🐙 **CLAUDE OCTOPUS ACTIVATED** - Implementation Planning
Write comprehensive implementation plans assuming the engineer has zero context for the codebase and questionable taste.
Document everything: which files to touch, complete code, how to test, how to verify.
Principles: DRY. YAGNI. TDD. Frequent commits.
Build a dependency graph for unresolved decisions before writing implementation tasks. A decision record contains its question, evidence required, dependencies, owner, resolution, and the implementation it unblocks. Use the repository's configured tracker. Beads is not an end-user requirement.
Decision states are open, claimed, resolved, superseded, and blocked, mapped to native tracker states or labels. Resolve only from evidence or a recorded human decision. If new evidence invalidates a decision, reopen its dependent work and explain why. A cycle means the work is not ready; recut the decisions rather than marking tasks ready.
Claim through the tracker's atomic operation and read ownership back before writing. If atomic claiming is unavailable, appoint one integrator. Never overwrite another claim. When the tracker fails, save an explicitly unfiled proposal in existing plan storage, stop tracker writes, and never fabricate IDs or migrate a database.
markdown# [Feature Name] Implementation Plan **Goal:** [One sentence describing what this builds] **Architecture:** [2-3 sentences about approach] **Tech Stack:** [Key technologies/libraries] **Estimated Time:** [X tasks × 5 min = Y minutes] --- ## Prerequisites - [ ] [Any setup needed before starting] - [ ] [Dependencies to install] - [ ] [Files that must exist]
Each task is ONE action (2-5 minutes):
| Good (Single Action) | Bad (Multiple Actions) | |---------------------|------------------------| | "Write the failing test" | "Write tests and implement" | | "Run test to verify it fails" | "Make it work" | | "Implement minimal code to pass" | "Add the feature" | | "Commit with message" | "Finish the feature" |
markdown### Task N: [Component Name] **Files:** - Create: `exact/path/to/new-file.ts` - Modify: `exact/path/to/existing.ts` (lines 45-67) - Test: `tests/exact/path/to/test.spec.ts` **Step 1: Write failing test**
// tests/exact/path/to/test.spec.ts describe('ComponentName', () => { it('should do specific thing', () => { const result = functionName(input); expect(result).toBe(expected); }); });
**Step 2: Run test to verify it fails**
npm test tests/exact/path/to/test.spec.ts
Expected output:FAIL: expected 'expected' but got undefined
**Step 3: Implement minimal code**
// exact/path/to/new-file.ts export function functionName(input: InputType): OutputType { // Minimal implementation return expected; }
**Step 4: Run test to verify it passes**
npm test tests/exact/path/to/test.spec.ts
Expected output:PASS: 1/1 tests passed
**Step 5: Commit**
git add tests/exact/path/to/test.spec.ts exact/path/to/new-file.ts git commit -m "feat(component): add specific functionality"
---markdown### Task 3: Add Email Validation **Files:** - Create: `src/validators/email.ts` - Test: `tests/validators/email.spec.ts` **Step 1: Write failing test**
// tests/validators/email.spec.ts import { validateEmail } from '../src/validators/email';
describe('validateEmail', () => { it('returns error for empty email', () => { const result = validateEmail(''); expect(result).toEqual({ valid: false, error: 'Email required' }); });
it('returns error for invalid format', () => { const result = validateEmail('not-an-email'); expect(result).toEqual({ valid: false, error: 'Invalid email format' }); });
it('returns valid for correct email', () => { const result = validateEmail('user@example.com'); expect(result).toEqual({ valid: true }); }); });
**Step 2: Run test to verify it fails**
npm test tests/validators/email.spec.ts
Expected: `Cannot find module '../src/validators/email'`
**Step 3: Implement minimal code**
// src/validators/email.ts interface ValidationResult { valid: boolean; error?: string; }
export function validateEmail(email: string): ValidationResult { if (!email || !email.trim()) { return { valid: false, error: 'Email required' }; }
const emailRegex = /^^\s@]+@^\s@]+\.^\s@]+$/; if (!emailRegex.test(email)) { return { valid: false, error: 'Invalid email format' }; }
return { valid: true }; }
**Step 4: Run test to verify it passes**
npm test tests/validators/email.spec.ts
Expected: `PASS: 3/3 tests passed`
**Step 5: Commit**
git add src/validators/email.ts tests/validators/email.spec.ts git commit -m "feat(validators): add email validation with tests"
After creating a plan, offer execution options:
markdown## Execution Options **1. Sequential (this session)** Execute tasks one by one with verification between each. **2. Parallel (octopus tangle)** Use Claude Octopus to parallelize independent tasks:
${HOME}/.claude-octopus/plugin/scripts/orchestrate.sh tangle "Execute implementation plan for feature]"
**3. Full workflow (octopus embrace)**
Research → Define → Implement → Deliver:${HOME}/.claude-octopus/plugin/scripts/orchestrate.sh embrace "Implement feature] per plan"
Claude Octopus uses session-aware plan storage. Plans are automatically saved to:
~/.claude-octopus/plans/${CLAUDE_SESSION_ID}/YYYY-MM-DD-feature-name.mdThis integrates with Claude Code's plansDirectory setting. To customize:
json// settings.json { "plansDirectory": "~/.claude-octopus/plans" }
For project-local plans, save to docs/plans/:
bashmkdir -p docs/plans # docs/plans/2026-01-17-user-authentication.md
| Mistake | Fix | |---------|-----| | "Add the validation" | Show exact code | | "Update the tests" | Show exact test code | | "In the config file" | config/app.config.ts line 23 | | "Run the tests" | npm test path/to/specific.spec.ts | | Large tasks (30+ min) | Break into 2-5 min steps | | No verification | Add "Run X, expect Y" |
| Scenario | Use Plan? | |----------|-----------| | Multi-step feature (3+ tasks) | Yes | | Simple bug fix (1 task) | No, just do it | | Uncertain scope | Yes (clarifies thinking) | | Delegation to subagent | Yes (zero-context execution) | | Complex refactoring | Yes | | Config change | No |
Plan exists → Engineer with zero context can execute
Otherwise → Not a complete planExact paths. Complete code. Verification steps. No assumptions.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 35,862 | 31,718 | -12% | 1 | 1 | 0% | 6,603 | 8,130 | +23% | 0 | 0 | — |
case-02 | fail→fail | 48,435 | 48,629 | +0% | 1 | 1 | 0% | 8,300 | 10,584 | +28% | 0 | 0 | — |
case-03 | fail→fail | 40,582 | 43,422 | +7% | 1 | 1 | 0% | 7,762 | 9,186 | +18% | 0 | 0 | — |
case-04 | fail→fail | 14,126 | 13,338 | -6% | 1 | 1 | 0% | 1,506 | 3,862 | +156% | 0 | 0 | — |
case-05 | fail→fail | 14,203 | 13,868 | -2% | 1 | 1 | 0% | 194 | 3,979 | +1951% | 0 | 0 | — |
case-06 | fail→fail | 14,091 | 17,835 | +27% | 1 | 1 | 0% | 141 | 5,005 | +3450% | 0 | 0 | — |
case-07 | fail→pass | 23,820 | 36,052 | +51% | 1 | 1 | 0% | 2,844 | 8,672 | +205% | 0 | 0 | — |
case-08 | pass→pass | 20,222 | 32,765 | +62% | 1 | 1 | 0% | 2,300 | 8,176 | +255% | 0 | 0 | — |
case-09 | pass→pass | 16,146 | 34,773 | +115% | 1 | 1 | 0% | 1,852 | 8,942 | +383% | 0 | 0 | — |
case-10 | fail→pass | 29,507 | 43,830 | +49% | 1 | 1 | 0% | 5,084 | 9,686 | +91% | 0 | 0 | — |
case-11 | fail→pass | 17,237 | 35,250 | +105% | 1 | 1 | 0% | 1,890 | 8,969 | +375% | 0 | 0 | — |
case-12 | pass→pass | 13,468 | 16,751 | +24% | 1 | 1 | 0% | 1,510 | 4,597 | +204% | 0 | 0 | — |
case-13 | fail→pass | 17,384 | 15,632 | -10% | 1 | 1 | 0% | 1,980 | 4,182 | +111% | 0 | 0 | — |
case-14 | fail→pass | 21,799 | 27,728 | +27% | 1 | 1 | 0% | 2,494 | 6,857 | +175% | 0 | 0 | — |
case-15 | pass→pass | 17,202 | 17,045 | -1% | 1 | 1 | 0% | 2,081 | 4,545 | +118% | 0 | 0 | — |
case-16 | fail→pass | 16,885 | 14,558 | -14% | 1 | 1 | 0% | 2,166 | 3,953 | +83% | 0 | 0 | — |
case-17 | fail→pass | 20,661 | 31,535 | +53% | 1 | 1 | 0% | 2,347 | 7,682 | +227% | 0 | 0 | — |
case-18 | pass→pass | 18,898 | 31,229 | +65% | 1 | 1 | 0% | 1,933 | 7,618 | +294% | 0 | 0 | — |
case-19 | fail→pass | 16,326 | 10,909 | -33% | 1 | 1 | 0% | 1,930 | 3,406 | +76% | 0 | 0 | — |
case-20 | fail→pass | 14,878 | 14,592 | -2% | 1 | 1 | 0% | 1,468 | 3,939 | +168% | 0 | 0 | — |
case-21 | fail→pass | 17,551 | 26,918 | +53% | 1 | 1 | 0% | 1,882 | 6,671 | +254% | 0 | 0 | — |
case-22 | fail→pass | 18,005 | 11,933 | -34% | 1 | 1 | 0% | 1,844 | 3,347 | +82% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 20 counted toward the lift figure. The other 2 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +50 percentage points is the difference between those two pass rates over the 20 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 8/17/2026 | +52% |
| gemini-3.6-flash | verified | 8/12/2026 | +14% |
Other measured skills in the registry, with their headline benchmark lift.