smithery.ai

implementation-planning

>- Creates bite-sized, TDD-ordered plans with exact paths, copy-pasteable code, and verification steps for a zero-context executor. Use this skill when an approved design or clear multi-step change is ready and coding is about to start. Do not use when/for exploring requirements (use design-exploration) or only listing high-level tasks (use create-tasks).

First seen Mar 22, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.2.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,079 B
  • docs SUMMARY.md 213 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

Implementation Planning

Critical rules

  • NO IMPLEMENTATION WITHOUT A PLAN FIRST for multi-step work.
  • Assume the executor has zero codebase context: exact paths, complete code, exact commands with expected output.
  • Every task: test → fail → implement → pass → commit. One action per step (~2-5 min).
  • Never vague steps, skipped verification, bundled multi-file "and" steps, or assumed knowledge.
  • Save to docs/plans/YYYY-MM-DD-<feature-name>.md. Prefer fn(args, deps) and Result types.
  • Before drafting task bodies, read [references/plan-structure.md](references/plan-structure.md).

Workflow

  1. Confirm design is approved (design-exploration) when requirements were ambiguous.
  2. Write header: goal, architecture, tech stack.
  3. Break into bite-sized TDD tasks with exact files and copy-pasteable code (see plan-structure).
  4. Quality-check: one action, exact paths, complete code, expected command output, clear TDD, commit messages.
  5. Save under docs/plans/ and offer execution handoff (often inside git-worktrees).

Resources

  • [references/plan-structure.md](references/plan-structure.md) — header/task templates and handoff. Read before writing the plan.

Validation

  • Header has goal, architecture, tech stack
  • Every task follows test → fail → implement → pass → commit
  • Exact paths; commands state expected output; no bundled steps
  • Plan saved to docs/plans/ and ready for handoff

Constraints

  • Skip for single-file/single-function obvious scope.
  • Related: design-exploration, tdd-workflow, git-worktrees, parallel-agent-dispatch, create-tasks.