sprint-status-template.yaml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. # WORKFLOW NOTES:
  28. # ===============
  29. # - Mark epic as 'in-progress' when starting work on its first story
  30. # - SM typically creates next story ONLY after previous one is 'done' to incorporate learnings
  31. # - Dev moves story to 'review', then Dev runs code-review (fresh context, ideally different LLM)
  32. # EXAMPLE STRUCTURE (your actual epics/stories will replace these):
  33. generated: 05-06-2-2025 21:30
  34. project: My Awesome Project
  35. project_key: jira-1234
  36. tracking_system: file-system
  37. story_location: "{story_location}"
  38. development_status:
  39. epic-1: backlog
  40. 1-1-user-authentication: done
  41. 1-2-account-management: ready-for-dev
  42. 1-3-plant-data-model: backlog
  43. 1-4-add-plant-manual: backlog
  44. epic-1-retrospective: optional
  45. epic-2: backlog
  46. 2-1-personality-system: backlog
  47. 2-2-chat-interface: backlog
  48. 2-3-llm-integration: backlog
  49. epic-2-retrospective: optional