smithery.ai

create-plan

Create PLAN.md + tasks/ folder with implementation plan (does not execute).

First seen Mar 21, 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.

Allowed toolsBash

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,206 B
  • docs SUMMARY.md 119 B

History

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

SKILL.md

Create Plan Workflow

Input

User provides a description of the feature, change, or fix to plan.

Output Structure

Always create at project root:

<project-root>/
├── PLAN.md                      # High-level overview + task checklist
└── tasks/
    ├── 01-task-name.md          # Individual task with full details
    ├── 02-another-task.md
    └── ...

See examples/ folder for complete reference implementation.

Project Root Detection

Search upward from current directory for these markers (in priority order):

  1. .git/ - Git repository
  2. go.mod - Go modules
  3. package.json - Node.js/npm
  4. Cargo.toml - Rust
  5. pyproject.toml - Python
  6. pom.xml - Java/Maven
  7. Makefile - C/C++/general

Stop at the first match. If no marker is found, ask the user to specify the project root.

If PLAN.md Already Exists

Before creating a new plan, check if PLAN.md exists at project root.

If it exists, inform the user and offer two options:

  1. Cancel - Stop and let user handle manually
  2. Archive and continue - Run /archive-plan to archive existing plan, then proceed

Example prompt:

PLAN.md already exists at {{path}}.
1. Cancel
2. Archive existing plan and continue

If user selects Archive, invoke /archive-plan skill first, then continue with plan creation.

Before Creating the Plan

  1. Ask clarifying questions if scope is ambiguous
  2. Confirm tech stack choices with user if multiple options exist

Process

  1. Analyze the request and break into discrete tasks
  2. Create PLAN.md using template structure
  3. Create tasks/ directory
  4. Create numbered task files (01-, 02-, etc.)
  5. Link tasks in PLAN.md checklist
  6. Stop and present plan for review

Success Output

After creating the plan, display this format:

✓ Plan created: {Plan Title} ({N} tasks)

Location: {project-root-path}/

PLAN.md
tasks/
├── 01-first-task.md
├── 02-second-task.md
├── 03-third-task.md
└── ...

📋 Copied PLAN.md path to clipboard

Run /execute-plan to start implementation.

Rules for success output:

  • Show all tasks if 10 or fewer
  • If more than 10 tasks, show first 9 then └── ... ({N} more)
  • Copy full path of PLAN.md to clipboard using pbcopy (macOS) or equivalent
  • Always end with the /execute-plan hint

PLAN.md Structure

# Plan: [Title]

## Problem

[What problem are we solving? 2-3 sentences]

## Solution

[High-level approach. Key architectural decisions. 1-2 paragraphs max]

## Tasks

<!-- Tasks are numbered in execution order. Each task depends on all previous tasks being complete. -->

- [ ] [01-task-name](tasks/01-task-name.md) - Brief description
- [ ] [02-task-name](tasks/02-task-name.md) - Brief description

## Dependencies

[External dependencies, prerequisites, or blockers]

## Notes

[Important context, constraints, or decisions]

Task File Structure

Each tasks/NN-task-name.md:

# Task: [Descriptive Name]

## Status

<!-- TODO | IN PROGRESS | DONE | SKIPPED -->
<!-- Detailed state here; PLAN.md checkbox is source of truth for completion -->

TODO

## Requires

- Task NN must be complete (or "None" if first task)

## Description

[What this task accomplishes. 2-3 sentences.]

## Proposed Solution

[Technical approach. Key implementation details.]

## Subtasks

- [ ] Subtask 1
- [ ] Subtask 2
- [ ] Subtask 3

## Files to Modify

- `path/to/file.py` - [what changes]
- `path/to/other.js` - [what changes]

## Verification

- [ ] Tests pass: `command to run tests` (timeout: 5min)
- [ ] Builds without errors: `build command` (timeout: 2min)
- [ ] Works as expected: [manual verification step]

## Notes

<!-- Context for execution agent -->

Rules

  • Tasks must be atomic and independently executable
  • Number tasks in logical execution order (01-, 02-, etc.)
  • Keep task descriptions actionable and specific
  • Each task should be completable in one session
  • If you can't describe what "done" looks like in one sentence, it's too big