minor fixes

This commit is contained in:
Brian Madison
2025-10-16 21:50:50 -05:00
parent 84a70d8331
commit 54985778f2
96 changed files with 11945 additions and 110 deletions

View File

@@ -34,9 +34,5 @@ agent:
workflow: "{project-root}/bmad/core/workflows/party-mode/workflow.yaml"
description: "Group chat with all agents"
# - trigger: "*bmad-init"
# workflow: "{project-root}/bmad/core/workflows/bmad-init/workflow.yaml"
# description: "Initialize or Update BMAD system agent manifest, customization, or workflow selection"
# Empty prompts section (no custom prompts for this agent)
prompts: []

View File

@@ -1,79 +0,0 @@
# BMAD Init - System Initialization Instructions
<workflow>
<step n="1" goal="Welcome and Status Check">
<action>Display welcome banner with BMAD branding</action>
<action>Check for BMAD installation at {project-root}/bmad</action>
<check>If installation found:</check>
<action>Display current version from {project-root}/bmad/_cfg/manifest.yaml</action>
<action>Show installation date and status</action>
<check>If not found:</check>
<action>Display warning that BMAD is not installed</action>
<action>Suggest running the installer first</action>
<action>Exit workflow</action>
<action>Display formatted status summary:
╔════════════════════════════════════════╗
║ BMAD INITIALIZATION ║
╚════════════════════════════════════════╝
Status: [Installed/Not Found]
Location: {project-root}/bmad
Version: [from manifest]
Installed: [date from manifest]
</action>
</step>
<step n="2" goal="Present Initialization Options">
<action>Display available initialization and maintenance tasks</action>
<ask>Select an initialization task:
1. Customize Installed Agents and Agent Party (Coming Soon)
- Assign new names and personas to agents
- Create runtime agent variants
- NOTE: This can all be done manually, but doing it through here will be easier and also update the party-mode manifest
2. Verify Installation (Coming Soon)
- Check all files are properly installed
- Validate configurations
3. Exit
Please select an option (1-3).
</ask>
</step>
<step n="3" goal="Process User Selection">
<check>If user selected "1":</check>
<action>Display message: ⚠️ Installed Agent Auto Customization is coming soon.</action>
<<action>Return to step 2</action>
<check>If user selected "2":</check>
<action>Display message: ⚠️ Installation verification is coming soon.</action>
<action>Return to step 2</action>
<check>If user selected "3":</check>
<action>Display message: Exiting BMAD Init. Thank you!</action>
<goto step="5">Exit workflow</goto>
</step>
<step n="4" goal="Post-Task Options">
<action>Display completion status of the executed task</action>
<ask>Task completed successfully!
Would you like to perform another initialization task? (y/n):</ask>
<check>If user responds "y":</check>
<goto step="2">Return to menu</goto>
<check>If user responds "n":</check>
<goto step="5">Exit workflow</goto>
</step>
<step n="5" goal="Exit Workflow">
<action>Display farewell message</action>
<action>Suggest user start a new context or clear context if needed</action>
<action>Exit workflow</action>
</step>
</workflow>

View File

@@ -1,14 +0,0 @@
# BMAD Init - System Initialization Workflow
name: "bmad-init"
description: "BMAD system initialization and maintenance workflow for agent manifest generation and system configuration"
author: "BMad"
# Critical variables
config_source: "{project-root}/bmad/_cfg/manifest.yaml"
date: system-generated
# This is an action workflow - no template output
template: false
instructions: "{project-root}/bmad/core/workflows/bmad-init/instructions.md"
web_bundle: false

View File

@@ -13,8 +13,8 @@ agent:
identity: Test architect specializing in CI/CD, automated frameworks, and scalable quality gates.
communication_style: Data-driven advisor. Strong opinions, weakly held. Pragmatic.
principles:
- Risk-based testing: depth scales with impact. Quality gates backed by data. Tests mirror usage. Cost = creation + execution + maintenance.
- Testing is feature work. Prioritize unit/integration over E2E. Flakiness is critical debt. ATDD: tests first, AI implements, suite validates.
- Risk-based testing. depth scales with impact. Quality gates backed by data. Tests mirror usage. Cost = creation + execution + maintenance.
- Testing is feature work. Prioritize unit/integration over E2E. Flakiness is critical debt. ATDD tests first, AI implements, suite validates.
critical_actions:
- "Consult {project-root}/bmad/bmm/testarch/tea-index.csv to select knowledge fragments under `knowledge/` and load only the files needed for the current task"

View File

@@ -1,7 +0,0 @@
# <!-- Powered by BMAD-CORE™ -->
bundle:
name: Team All
icon: 👥
description: Includes every bmm system agent.
agents:
- "*"

View File

@@ -8,5 +8,4 @@ agents:
- architect
- pm
- sm
- tea
- ux-expert

View File

@@ -18,7 +18,6 @@ instructions: "{installed_path}/instructions.md"
# Templates
prd_template: "{installed_path}/prd-template.md"
epics_template: "{installed_path}/epics-template.md"
status_template: "{project-root}/bmad/bmm/workflows/_shared/bmm-workflow-status-template.md"
# Output files
status_file: "{output_folder}/bmm-workflow-status.md"
@@ -41,4 +40,3 @@ web_bundle:
- "bmad/bmm/workflows/2-plan-workflows/prd/instructions.md"
- "bmad/bmm/workflows/2-plan-workflows/prd/prd-template.md"
- "bmad/bmm/workflows/2-plan-workflows/prd/epics-template.md"
- "bmad/bmm/workflows/_shared/bmm-workflow-status-template.md"