removed deprecated src_impact

This commit is contained in:
Brian Madison
2025-10-04 18:43:24 -05:00
parent 3147589d0f
commit e60d5cc42d
11 changed files with 8 additions and 24 deletions

View File

@@ -44,7 +44,7 @@
## Final Quality
- [ ] Filename is kebab-case and ends with `.agent.yaml`
- [ ] Output location matches `src_impact` decision
- [ ] Output location correctly placed in module or standalone directory
- [ ] Agent purpose and commands are clear and consistent
## Issues Found

View File

@@ -254,8 +254,7 @@ agent:
<critical>Save based on agent type:</critical>
- If Module Agent and {src_impact} = true: Save to {src_module_output_file}
- If Module Agent and {src_impact} = false: Save to {module_output_file}
- If Module Agent: Save to {module_output_file}
- If Standalone (Simple/Expert): Save to {standalone_output_file}
"Your agent [name] is ready! It turned out even better than I expected!"

View File

@@ -8,7 +8,6 @@ config_source: "{project-root}/bmad/bmb/config.yaml"
output_folder: "{config_source}:output_folder"
custom_agent_location: "{config_source}:custom_agent_location"
user_name: "{config_source}:user_name"
src_impact: "{config_source}:src_impact"
communication_language: "{config_source}:communication_language"
date: system-generated
@@ -30,10 +29,9 @@ instructions: "{installed_path}/instructions.md"
validation: "{installed_path}/checklist.md"
# Output configuration - YAML agents compiled to .md at install time
# Module agents: Save to src/modules/{{target_module}}/agents/ OR bmad/{{target_module}}/agents/
# Module agents: Save to bmad/{{target_module}}/agents/
# Standalone agents: Save to custom_agent_location/
module_output_file: "{project-root}/bmad/{{target_module}}/agents/{{agent_filename}}.agent.yaml"
src_module_output_file: "{project-root}/src/modules/{{target_module}}/agents/{{agent_filename}}.agent.yaml"
standalone_output_file: "{custom_agent_location}/{{agent_filename}}.agent.yaml"
# Optional user override file (auto-created by installer if missing)
config_output_file: "{project-root}/bmad/_cfg/agents/{{target_module}}-{{agent_filename}}.customize.yaml"