sprint-status-template.yaml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # Sprint Status Template
  2. # This is an EXAMPLE showing the expected format
  3. # The actual file will be generated with all epics/stories from your epic files
  4. # generated: {date}
  5. # project: {project_name}
  6. # project_key: {project_key}
  7. # tracking_system: {tracking_system}
  8. # story_location: {story_location}
  9. # STATUS DEFINITIONS:
  10. # ==================
  11. # Epic Status:
  12. # - backlog: Epic not yet started
  13. # - in-progress: Epic actively being worked on
  14. # - done: All stories in epic completed
  15. #
  16. # Story Status:
  17. # - backlog: Story only exists in epic file
  18. # - ready-for-dev: Story file created, ready for development
  19. # - in-progress: Developer actively working on implementation
  20. # - review: Implementation complete, ready for review
  21. # - done: Story completed
  22. #
  23. # Retrospective Status:
  24. # - optional: Can be completed but not required
  25. # - done: Retrospective has been completed
  26. #
  27. # Action Item Status:
  28. # - open: Committed during a retrospective, not yet addressed
  29. # - in-progress: Actively being worked on
  30. # - done: Completed
  31. #
  32. # WORKFLOW NOTES:
  33. # ===============
  34. # - Mark epic as 'in-progress' when starting work on its first story
  35. # - Developer typically creates next story ONLY after previous one is 'done' to incorporate learnings
  36. # - Dev moves story to 'review', then Dev runs code-review (fresh context, ideally different LLM)
  37. # - Retrospective appends its action items to action_items; sprint-status surfaces open ones
  38. # EXAMPLE STRUCTURE (your actual epics/stories will replace these):
  39. generated: 05-06-2-2025 21:30
  40. last_updated: 05-06-2-2025 21:30
  41. project: My Awesome Project
  42. project_key: NOKEY
  43. tracking_system: file-system
  44. story_location: "{story_location}"
  45. development_status:
  46. epic-1: backlog
  47. 1-1-user-authentication: done
  48. 1-2-account-management: ready-for-dev
  49. 1-3-plant-data-model: backlog
  50. 1-4-add-plant-manual: backlog
  51. epic-1-retrospective: optional
  52. epic-2: backlog
  53. 2-1-personality-system: backlog
  54. 2-2-chat-interface: backlog
  55. 2-3-llm-integration: backlog
  56. epic-2-retrospective: optional
  57. # Action items committed during retrospectives (section created by the retrospective workflow)
  58. action_items:
  59. - epic: 1
  60. action: "Add error-handling review to the code review checklist"
  61. owner: "Charlie"
  62. status: open