Cursor CommandsCursor Commands
CategoriesExamples

Setup New Feature Command

A command to systematically setup a new feature, guiding through requirements definition, branch creation, architectural planning, and environment setup.

Command Code

# Setup New Feature

## Overview

Systematically set up a new feature from initial planning through to
implementation structure.

## Steps

1. **Define requirements**
    - Clarify feature scope and goals
    - Identify user stories and acceptance criteria
    - Plan technical approach
2. **Create feature branch**
    - Branch from main/develop
    - Set up local development environment
    - Configure any new dependencies
3. **Plan architecture**
    - Design data models and APIs
    - Plan UI components and flow
    - Consider testing strategy

## Feature Setup Checklist

- [ ] Requirements documented
- [ ] User stories written
- [ ] Technical approach planned
- [ ] Feature branch created
- [ ] Development environment ready