🎯

sdd-planning

🎯Skill

from madebyaris/spec-kit-command-cursor

VibeIndex|
What it does

Generates comprehensive project specifications and roadmaps, breaking down complex project requirements into structured, actionable technical plans with detailed tasks and architectural insights.

πŸ“¦

Part of

madebyaris/spec-kit-command-cursor(5 items)

sdd-planning

Installation

git cloneClone repository
git clone https://github.com/madebyaris/spec-kit-command-cursor.git
πŸ“– Extracted from docs: madebyaris/spec-kit-command-cursor
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# SDD Cursor Commands v4.1

[![GitHub stars](https://img.shields.io/github/stars/madebyaris/spec-kit-command-cursor?style=social)](https://github.com/madebyaris/spec-kit-command-cursor/stargazers)

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com)

Spec-Driven Development for Cursor IDE

Create specifications before code. Plan-approve-execute for all operations.

[Quick Start](#quick-start) β€’ [Commands](#commands) β€’ [Subagents & Skills](#subagents--skills) β€’ [Contributing](#contributing)

---

What's New in v4.1

  • Native Subagents - 6 specialized agents for parallel execution (no MCP required)
  • Folder-Based Skills - Progressive loading with references, scripts, and assets
  • Automatic Verification - sdd-verifier runs after every implementation
  • Cursor 2.4+ Optimized - Full subagent and skill support

---

Quick Start

```bash

# Clone

git clone https://github.com/madebyaris/spec-kit-command-cursor.git

# Quick planning (80% of features)

/brief user-auth JWT authentication with login/logout

# Full project roadmap with parallel execution

/sdd-full-plan blog-platform Full-featured blog with CMS

# Execute tasks in parallel

/execute-parallel blog-platform

```

---

Commands

Planning

| Command | Purpose | Output |

|---------|---------|--------|

| /brief | 30-min quick planning | feature-brief.md |

| /research | Pattern investigation | research.md |

| /specify | Detailed requirements | spec.md |

| /plan | Technical architecture | plan.md |

| /tasks | Task breakdown | tasks.md |

| /generate-prd | PRD via Socratic questions | full-prd.md |

| /sdd-full-plan | Complete project roadmap | roadmap.json + tasks |

Execution

| Command | Purpose |

|---------|---------|

| /implement | Execute implementation with todo tracking |

| /execute-task | Run single task from roadmap |

| /execute-parallel | Parallel execution via native subagents |

Maintenance

| Command | Purpose |

|---------|---------|

| /evolve | Update specs with discoveries |

| /refine | Iterate on specs through discussion |

| /upgrade | Brief β†’ Full SDD planning |

| /audit | Compare implementation against specs |

| /generate-rules | Auto-generate coding rules |

---

Subagents & Skills

Subagents (`.cursor/agents/`)

Specialized agents with isolated context for parallel execution:

| Subagent | Model | Purpose |

|----------|-------|---------|

| sdd-explorer | fast | Codebase discovery |

| sdd-planner | inherit | Architecture design |

| sdd-implementer | inherit | Code generation |

| sdd-verifier | fast | Validation after implementation |

| sdd-reviewer | fast | Security & performance review |

| sdd-orchestrator | inherit | Parallel task coordination |

Skills (`.cursor/skills/`)

Auto-invoked domain knowledge packages:

| Skill | Auto-Invoke When |

|-------|------------------|

| sdd-research | Technical approach unclear |

| sdd-planning | Spec exists, need plan |

| sdd-implementation | Plan ready for execution |

| sdd-audit | Code review requested |

| sdd-evolve | Discoveries during development |

Each skill folder contains:

```

sdd-[name]/

β”œβ”€β”€ SKILL.md # Core instructions

β”œβ”€β”€ references/ # Loaded on demand

β”œβ”€β”€ scripts/ # Executable helpers

└── assets/ # Templates

```

---

Workflows

Quick Planning (80% of features)

```

/brief β†’ /evolve β†’ /refine

```

Full Planning (complex features)

```

/research β†’ /specify β†’ /plan β†’ /tasks β†’ /implement

```

Project Roadmap with Parallel Execution

```

/sdd-full-plan β†’ /execute-parallel

```

Automated Execution

```bash

# Execute until complete

/execute-task epic-001 --until-finish

# Create and execute entire project

/sdd-full-plan my-project --until-finish

```

---

Project Structure

```

.cursor/

β”œβ”€β”€ agents/ # Subagents (6 specialized)

β”œβ”€β”€ skills/ # Skills (5 with progressive loading)

β”œβ”€β”€ commands/ # Slash commands

└── rules/ # Always-applied rules

specs/

β”œβ”€β”€ active/ # Features in development

β”œβ”€β”€ todo-roadmap/ # Project roadmaps with DAG

└── completed/ # Delivered features

```

---

Contributing

  • [Report bugs](https://github.com/madebyaris/spec-kit-command-cursor/issues)
  • [Suggest features](https://github.com/madebyaris/spec-kit-command-cursor/discussions)
  • Submit PRs

Acknowledgments

Thanks to [ClavixDev](https://github.com/ClavixDev) for valuable ideas and suggestions!

License

MIT License - see [LICENSE](LICENSE)

---

Made with ❀️ by [Aris](https://github.com/madebyaris)

```bash

/brief hello-world Create a simple hello world feature

```