Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
5f8c18c
feat: add sprint/cycle management for Agile workflows
sigent-amazon Nov 17, 2025
6640291
refactor: consolidate sprint documentation into single design doc
sigent-amazon Nov 17, 2025
34967cb
feat: add scripts for sprint creation and archival
sigent-amazon Nov 17, 2025
fa35658
feat: make feature creation sprint-aware
sigent-amazon Nov 17, 2025
5c77be1
feat: move completed specs to sprint archive
sigent-amazon Nov 17, 2025
67bf04f
feat: add sprint add command and interactive archive completion checking
sigent-amazon Nov 17, 2025
3bf420f
fix: correct TODO count grep in archive script
sigent-amazon Nov 17, 2025
c9d3975
fix: escape asterisks in Duration grep pattern
sigent-amazon Nov 17, 2025
e3acd62
feat: add non-interactive mode detection for archive script
sigent-amazon Nov 17, 2025
e799578
refactor: remove interactive prompts from archive script
sigent-amazon Nov 17, 2025
16971d5
docs: update archive and sprint commands for sequential prompting
sigent-amazon Nov 17, 2025
670363f
feat: add Sprint Management Commands section to CLI output
sigent-amazon Nov 17, 2025
545f840
docs: add Sprint Management section to README
sigent-amazon Nov 17, 2025
e8340e1
chore: remove PR_DESCRIPTION.md from repository
sigent-amazon Nov 17, 2025
07ac409
remove template
sigent-amazon Nov 17, 2025
b5ea4f8
fix: update script paths to use bash subdirectory
sigent-amazon Nov 18, 2025
fa714ac
feat: add PowerShell script examples to sprint commands
sigent-amazon Nov 18, 2025
774e382
fix: remove example features from sprint template
sigent-amazon Nov 18, 2025
484fde3
Sprint management improvements
sigent-amazon Nov 18, 2025
5ea9d9b
Remove AWS product references from sprint template
sigent-amazon Nov 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,21 @@ Additional commands for enhanced quality and validation:
| `/speckit.analyze` | Cross-artifact consistency & coverage analysis (run after `/speckit.tasks`, before `/speckit.implement`) |
| `/speckit.checklist` | Generate custom quality checklists that validate requirements completeness, clarity, and consistency (like "unit tests for English") |

#### Sprint Management Commands

Optional commands for Agile/Scrum workflows (organize features into time-boxed cycles):

| Command | Description |
|-----------------------------|-----------------------------------------------------------------------|
| `/speckit.sprint start` | Create new sprint with goals and timeline |
| `/speckit.sprint add` | Add features to active sprint backlog |
| `/speckit.sprint status` | View current sprint progress, blockers, and completion |
| `/speckit.archive` | Archive completed sprint with summary and move specs to archive |
| `/speckit.retrospective` | Conduct structured sprint retrospective |
| `/speckit.roadmap` | Generate project-level roadmap across all sprints |

For detailed information about sprint management, see [SPRINT_CYCLE_DESIGN.md](SPRINT_CYCLE_DESIGN.md).

### Environment Variables

| Variable | Description |
Expand Down
Loading