Initial commit: BMAD framework + Story 1.1 Component Trait Definition

Features:
- BMAD (Build Modular AI-driven Development) framework setup
- BMM, BMB, CIS, Core modules configured
- Story 1.1: Component trait with error handling
- Workspace Cargo.toml with components crate
- 31 tests passing (19 unit + 12 doc tests)

Technical:
- Component trait with compute_residuals, jacobian_entries, n_equations
- ComponentError enum with thiserror
- JacobianBuilder for sparse matrix construction
- Object-safe trait supporting Box<dyn Component>
- Comprehensive documentation and examples
This commit is contained in:
Sepehr
2026-02-14 13:44:32 +01:00
parent 22dd012a74
commit 1fdfefe631
634 changed files with 70435 additions and 0 deletions

13
_bmad/bmb/module-help.csv Normal file
View File

@@ -0,0 +1,13 @@
module,phase,name,code,sequence,workflow-file,command,required,agent,options,description,output-location,outputs,
bmb,anytime,Create Agent,CA,10,_bmad/bmb/workflows/agent/workflow-create-agent.md,bmad_bmb_create_agent,false,agent-builder,Create Mode,"Create a new BMAD agent with best practices and compliance",bmb_creations_output_folder,"agent",
bmb,anytime,Edit Agent,EA,15,_bmad/bmb/workflows/agent/workflow-edit-agent.md,bmad_bmb_edit_agent,false,agent-builder,Edit Mode,"Edit existing BMAD agents while maintaining compliance",bmb_creations_output_folder,"agent",
bmb,anytime,Validate Agent,VA,20,_bmad/bmb/workflows/agent/workflow-validate-agent.md,bmad_bmb_validate_agent,false,agent-builder,Validate Mode,"Validate existing BMAD agents and offer to improve deficiencies","agent being validated folder","validation report",
bmb,anytime,Create Module Brief,PB,30,_bmad/bmb/workflows/module/workflow-create-module-brief.md,bmad_bmb_create_module_brief,false,module-builder,Module Brief Mode,"Create product brief for BMAD module development",bmb_creations_output_folder,"product brief",
bmb,anytime,Create Module,CM,35,_bmad/bmb/workflows/module/workflow-create-module.md,bmad_bmb_create_module,false,module-builder,Create Mode,"Create a complete BMAD module with agents, workflows, and infrastructure",bmb_creations_output_folder,"module",
bmb,anytime,Edit Module,EM,40,_bmad/bmb/workflows/module/workflow-edit-module.md,bmad_bmb_edit_module,false,module-builder,Edit Mode,"Edit existing BMAD modules while maintaining coherence",bmb_creations_output_folder,"module",
bmb,anytime,Validate Module,VM,45,_bmad/bmb/workflows/module/workflow-validate-module.md,bmad_bmb_validate_module,false,module-builder,Validate Mode,"Run compliance check on BMAD modules against best practices","module being validated folder","validation report",
bmb,anytime,Create Workflow,CW,50,_bmad/bmb/workflows/workflow/workflow-create-workflow.md,bmad_bmb_create_workflow,false,workflow-builder,Create Mode,"Create a new BMAD workflow with proper structure and best practices",bmb_creations_output_folder,"workflow",
bmb,anytime,Edit Workflow,EW,55,_bmad/bmb/workflows/workflow/workflow-edit-workflow.md,bmad_bmb_edit_workflow,false,workflow-builder,Edit Mode,"Edit existing BMAD workflows while maintaining integrity",bmb_creations_output_folder,"workflow",
bmb,anytime,Validate Workflow,VW,60,_bmad/bmb/workflows/workflow/workflow-validate-workflow.md,bmad_bmb_validate_workflow,false,workflow-builder,Validate Mode,"Run validation check on BMAD workflows against best practices",workflow being validated folder,"validation report",
bmb,anytime,Max Parallel Validate,MV,65,_bmad/bmb/workflows/workflow/workflow-validate-max-parallel-workflow.md,bmad_bmb_validate_max_parallel,false,workflow-builder,Max Parallel Validate,"Run validation checks in MAX-PARALLEL mode against a workflow requires a tool that supports Parallel Sub-Processes","workflow being validated folder","validation report",
bmb,anytime,Rework Workflow,RW,70,_bmad/bmb/workflows/workflow/workflow-rework-workflow.md,bmad_bmb_rework_workflow,false,workflow-builder,Rework Mode,"Rework a Workflow to a V6 Compliant Version",bmb_creations_output_folder,"workflow",
1 module phase name code sequence workflow-file command required agent options description output-location outputs
2 bmb anytime Create Agent CA 10 _bmad/bmb/workflows/agent/workflow-create-agent.md bmad_bmb_create_agent false agent-builder Create Mode Create a new BMAD agent with best practices and compliance bmb_creations_output_folder agent
3 bmb anytime Edit Agent EA 15 _bmad/bmb/workflows/agent/workflow-edit-agent.md bmad_bmb_edit_agent false agent-builder Edit Mode Edit existing BMAD agents while maintaining compliance bmb_creations_output_folder agent
4 bmb anytime Validate Agent VA 20 _bmad/bmb/workflows/agent/workflow-validate-agent.md bmad_bmb_validate_agent false agent-builder Validate Mode Validate existing BMAD agents and offer to improve deficiencies agent being validated folder validation report
5 bmb anytime Create Module Brief PB 30 _bmad/bmb/workflows/module/workflow-create-module-brief.md bmad_bmb_create_module_brief false module-builder Module Brief Mode Create product brief for BMAD module development bmb_creations_output_folder product brief
6 bmb anytime Create Module CM 35 _bmad/bmb/workflows/module/workflow-create-module.md bmad_bmb_create_module false module-builder Create Mode Create a complete BMAD module with agents, workflows, and infrastructure bmb_creations_output_folder module
7 bmb anytime Edit Module EM 40 _bmad/bmb/workflows/module/workflow-edit-module.md bmad_bmb_edit_module false module-builder Edit Mode Edit existing BMAD modules while maintaining coherence bmb_creations_output_folder module
8 bmb anytime Validate Module VM 45 _bmad/bmb/workflows/module/workflow-validate-module.md bmad_bmb_validate_module false module-builder Validate Mode Run compliance check on BMAD modules against best practices module being validated folder validation report
9 bmb anytime Create Workflow CW 50 _bmad/bmb/workflows/workflow/workflow-create-workflow.md bmad_bmb_create_workflow false workflow-builder Create Mode Create a new BMAD workflow with proper structure and best practices bmb_creations_output_folder workflow
10 bmb anytime Edit Workflow EW 55 _bmad/bmb/workflows/workflow/workflow-edit-workflow.md bmad_bmb_edit_workflow false workflow-builder Edit Mode Edit existing BMAD workflows while maintaining integrity bmb_creations_output_folder workflow
11 bmb anytime Validate Workflow VW 60 _bmad/bmb/workflows/workflow/workflow-validate-workflow.md bmad_bmb_validate_workflow false workflow-builder Validate Mode Run validation check on BMAD workflows against best practices workflow being validated folder validation report
12 bmb anytime Max Parallel Validate MV 65 _bmad/bmb/workflows/workflow/workflow-validate-max-parallel-workflow.md bmad_bmb_validate_max_parallel false workflow-builder Max Parallel Validate Run validation checks in MAX-PARALLEL mode against a workflow requires a tool that supports Parallel Sub-Processes workflow being validated folder validation report
13 bmb anytime Rework Workflow RW 70 _bmad/bmb/workflows/workflow/workflow-rework-workflow.md bmad_bmb_rework_workflow false workflow-builder Rework Mode Rework a Workflow to a V6 Compliant Version bmb_creations_output_folder workflow