Skip to content

Command Quick Reference

Copy-paste ready commands.

All Commands


Command Organization

agentic-software-development/
├── Product
│   ├── /create-task
│   └── /decompose-task
├── Planning
│   ├── /refine-task
│   └── /create-plan
├── Development
│   ├── /start-task
│   └── /complete-task
├── Quality
│   ├── /create-test
│   └── /review-code
└── Utilities
    ├── /mcp-status
    └── /setup-asdlc

Product Management

# Create user story
/create-task --type=story for [feature description]

# Create epic from plan
/create-task --type=epic from [plan-file.md]

# Decompose large task into subtasks
/decompose-task TASK-123

# Create bug
/create-task --type=bug [description]

Planning

# Refine task for sprint planning
/refine-task TASK-123

# Design implementation
/create-plan for TASK-123

Development

# Start work
/start-task TASK-123

# Ship it
/complete-task TASK-123

Quality

# Write tests
/create-test --type=unit for ClassName

# Review code
/review-code for PR #42

Utilities

# Check MCP server status
/mcp-status

# Initialize repository for ASDLC
/setup-asdlc

Back to Commands