AI-powered sprint planning. Break down a goal into structured GitHub issues with execution order, priorities, and types.
Use AI to break down a high-level goal into actionable GitHub issues. The AI analyzes your project context (from LOCUS.md and .locus/memory/) and generates structured issues with titles, descriptions, priorities, types, dependencies, and execution order.
locus plan "Build user authentication with OAuth"
locus plan "Improve API performance" --sprint "Sprint 3"
locus plan "Add dark mode support" --dry-run
locus plan --from-issues --sprint "Sprint 2"
locus plan --from-issues --sprint "Sprint 2" --dry-run
# AI creates issues from a goal
locus plan "Build a REST API for user management"
# AI creates issues and assigns them to a sprint
locus plan "Implement real-time notifications" --sprint "Sprint 4"
# Preview the plan without creating anything
locus plan "Migrate database to PostgreSQL" --dry-run
# Approve a plan (sprint name is required)
locus plan approve abc123 "Sprint 3"
# Approve with dry run
locus plan approve abc123 "Sprint 3" --dry-run
# Organize existing sprint issues into optimal order
locus plan --from-issues --sprint "Sprint 2"