Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Give agents more agency

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    adityasanka

    create-plan

    adityasanka/create-plan
    Planning
    35 installs

    About

    SKILL.md

    Install

    • Telegram
      Telegram
    • Slack
      Slack
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    • Download skill
    ├─
    ├─
    └─

    About

    Create PLAN.md + tasks/ folder with implementation plan. Does NOT execute - use execute-plan to run.

    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
    Recommended Servers
    TabAI
    TabAI
    Productboard
    Productboard
    MantleKit Launch Planner
    MantleKit Launch Planner
    Repository
    adityasanka/dotfiles
    Files