workflow.yaml 977 B

1234567891011121314151617181920
  1. name: dev-story
  2. description: 'Execute story implementation following a context filled story spec file. Use when the user says "dev this story [story file]" or "implement the next story in the sprint plan"'
  3. # Critical variables from config
  4. config_source: "{project-root}/_bmad/bmm/config.yaml"
  5. user_name: "{config_source}:user_name"
  6. communication_language: "{config_source}:communication_language"
  7. user_skill_level: "{config_source}:user_skill_level"
  8. document_output_language: "{config_source}:document_output_language"
  9. date: system-generated
  10. # Workflow components
  11. installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/dev-story"
  12. instructions: "{installed_path}/instructions.xml"
  13. validation: "{installed_path}/checklist.md"
  14. story_file: "" # Explicit story path; auto-discovered if empty
  15. implementation_artifacts: "{config_source}:implementation_artifacts"
  16. sprint_status: "{implementation_artifacts}/sprint-status.yaml"
  17. project_context: "**/project-context.md"