mirror of
https://github.com/bmadcode/BMAD-METHOD.git
synced 2025-12-29 16:14:59 +00:00
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
|
|
name: sprint-planning
|
||
|
|
description: "Generate and manage the sprint status tracking file for Phase 4 implementation, extracting all epics and stories from epic files and tracking their status through the development lifecycle"
|
||
|
|
author: "BMad"
|
||
|
|
|
||
|
|
# Critical variables from config
|
||
|
|
config_source: "{project-root}/bmad/bmm/config.yaml"
|
||
|
|
output_folder: "{config_source}:output_folder"
|
||
|
|
user_name: "{config_source}:user_name"
|
||
|
|
communication_language: "{config_source}:communication_language"
|
||
|
|
document_output_language: "{config_source}:document_output_language"
|
||
|
|
date: system-generated
|
||
|
|
|
||
|
|
# Workflow components
|
||
|
|
installed_path: "{project-root}/bmad/bmm/workflows/4-implementation/sprint-planning"
|
||
|
|
instructions: "{installed_path}/instructions.md"
|
||
|
|
template: "{installed_path}/sprint-status-template.yaml"
|
||
|
|
validation: "{installed_path}/checklist.md"
|
||
|
|
|
||
|
|
# Variables and inputs
|
||
|
|
variables:
|
||
|
|
# Project identification
|
||
|
|
project_name: "{config_source}:project_name"
|
||
|
|
|
||
|
|
# Source files
|
||
|
|
epics_location: "{output_folder}" # Directory containing epic*.md files
|
||
|
|
epics_pattern: "epic*.md" # Pattern to find epic files
|
||
|
|
|
||
|
|
# Output configuration
|
||
|
|
status_file: "{output_folder}/sprint-status.yaml"
|
||
|
|
|
||
|
|
# Story locations
|
||
|
|
story_dir: "{config_source}:dev_story_location" # Where story files are created
|
||
|
|
|
||
|
|
# Output configuration
|
||
|
|
default_output_file: "{status_file}"
|
||
|
|
|
||
|
|
web_bundle: false
|