Creates a new sprint directory in .claude/sprint/ with specs.md template including goal, scope, testing details from provided description or interactive input.
From sprintnpx claudepluginhub damienlaine/agentic-sprint[goal description]/newCreates new spec with kebab-case name in configured specs directory (or specified via --specs-dir), captures goal, and starts research phase unless --skip-research.
/newManages backlog items across files, GitHub Issues, Linear, or Beads backends. Supports add, list, update, complete actions.
/newInteractively creates a project style guide (STYLE_GUIDE.md) via questions on brand context, voice, formality, perspective, and mechanics.
You are bootstrapping a new sprint for the user.
Find the next sprint number:
# Get current highest sprint number
LAST=$(ls -d .claude/sprint/*/ 2>/dev/null | sort -V | tail -1 | grep -oE '[0-9]+' | tail -1)
if [ -z "$LAST" ]; then
NEXT=1
else
NEXT=$((LAST + 1))
fi
echo $NEXT
mkdir -p .claude/sprint/[NEXT]
Ask the user for sprint details. Present this as a structured question:
What would you like to build in this sprint?
Options to clarify:
Based on user input, create .claude/sprint/[NEXT]/specs.md:
# Sprint [NEXT] Specifications
## Goal
[User's goal description]
## Scope
[List of features/tasks]
## Testing
- QA: [required/optional/skip]
- UI Testing: [required/optional/skip]
- UI Testing Mode: [automated/manual]
## Notes
[Any additional context]
After creating the sprint, suggest:
Sprint [NEXT] created at .claude/sprint/[NEXT]/
Next steps:
1. Review and edit .claude/sprint/[NEXT]/specs.md if needed
2. Run /sprint to start the sprint workflow
3. The architect will analyze specs and create detailed specifications
Tip: For detailed specs, you can add:
- API endpoint details
- UI mockup descriptions
- Database schema changes
- Specific test scenarios
If the user provides a one-liner goal, create the sprint immediately:
Example: /sprint:new Add user authentication with OAuth
Creates:
# Sprint [N] Specifications
## Goal
Add user authentication with OAuth
## Scope
- To be analyzed by architect
## Testing
- QA: required
- UI Testing: required
- UI Testing Mode: automated
Offer templates for common sprint types:
# Sprint [N] Specifications
## Goal
[New feature description]
## Scope
- Backend API endpoints
- Frontend UI components
- Database migrations
- Tests
## Testing
- QA: required
- UI Testing: required
- UI Testing Mode: automated
# Sprint [N] Specifications
## Goal
Fix [bug description]
## Scope
- Root cause analysis
- Fix implementation
- Regression tests
## Testing
- QA: required
- UI Testing: optional
- UI Testing Mode: automated
# Sprint [N] Specifications
## Goal
Refactor [component/system]
## Scope
- Code restructuring
- No functional changes
- Update tests if needed
## Testing
- QA: required
- UI Testing: skip
Report to user: