fix(bmm): add missing project-context references to workflows
correct-course, retrospective, and sprint-status workflows were missing project_context entirely. quick-spec referenced it in step files but not in the initialization sequence. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
a1101534b2
commit
4de208ddef
|
|
@ -14,6 +14,7 @@ planning_artifacts: "{config_source}:planning_artifacts"
|
||||||
project_knowledge: "{config_source}:project_knowledge"
|
project_knowledge: "{config_source}:project_knowledge"
|
||||||
output_folder: "{implementation_artifacts}"
|
output_folder: "{implementation_artifacts}"
|
||||||
sprint_status: "{implementation_artifacts}/sprint-status.yaml"
|
sprint_status: "{implementation_artifacts}/sprint-status.yaml"
|
||||||
|
project_context: "**/project-context.md"
|
||||||
|
|
||||||
# Smart input file references - handles both whole docs and sharded docs
|
# Smart input file references - handles both whole docs and sharded docs
|
||||||
# Priority: Whole document first, then sharded version
|
# Priority: Whole document first, then sharded version
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ document_output_language: "{config_source}:document_output_language"
|
||||||
date: system-generated
|
date: system-generated
|
||||||
planning_artifacts: "{config_source}:planning_artifacts"
|
planning_artifacts: "{config_source}:planning_artifacts"
|
||||||
implementation_artifacts: "{config_source}:implementation_artifacts"
|
implementation_artifacts: "{config_source}:implementation_artifacts"
|
||||||
|
project_context: "**/project-context.md"
|
||||||
|
|
||||||
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/retrospective"
|
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/retrospective"
|
||||||
template: false
|
template: false
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,7 @@ document_output_language: "{config_source}:document_output_language"
|
||||||
date: system-generated
|
date: system-generated
|
||||||
implementation_artifacts: "{config_source}:implementation_artifacts"
|
implementation_artifacts: "{config_source}:implementation_artifacts"
|
||||||
planning_artifacts: "{config_source}:planning_artifacts"
|
planning_artifacts: "{config_source}:planning_artifacts"
|
||||||
|
project_context: "**/project-context.md"
|
||||||
|
|
||||||
# Workflow components
|
# Workflow components
|
||||||
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/sprint-status"
|
installed_path: "{project-root}/_bmad/bmm/workflows/4-implementation/sprint-status"
|
||||||
|
|
|
||||||
|
|
@ -71,6 +71,7 @@ Load and read full config from `{main_config}` and resolve:
|
||||||
- `project_name`, `output_folder`, `planning_artifacts`, `implementation_artifacts`, `user_name`
|
- `project_name`, `output_folder`, `planning_artifacts`, `implementation_artifacts`, `user_name`
|
||||||
- `communication_language`, `document_output_language`, `user_skill_level`
|
- `communication_language`, `document_output_language`, `user_skill_level`
|
||||||
- `date` as system-generated current datetime
|
- `date` as system-generated current datetime
|
||||||
|
- `project_context` = `**/project-context.md` (load if exists)
|
||||||
- ✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config `{communication_language}`
|
- ✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config `{communication_language}`
|
||||||
|
|
||||||
### 2. First Step Execution
|
### 2. First Step Execution
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue