web bundler improvements part 1

This commit is contained in:
Brian Madison
2025-11-05 23:54:04 -06:00
parent 80a04bfce3
commit 8ed4a548ea
40 changed files with 5438 additions and 36 deletions

View File

@@ -65,3 +65,49 @@ features:
- "Implementation patterns for agent consistency"
standalone: true
# Web bundle configuration for standalone deployment
web_bundle:
name: "architecture"
description: "Collaborative architectural decision facilitation for AI-agent consistency. Replaces template-driven architecture with intelligent, adaptive conversation that produces a decision-focused architecture document optimized for preventing agent conflicts."
author: "BMad"
# Core workflow files (bmad/-relative paths)
instructions: "bmad/bmm/workflows/3-solutioning/architecture/instructions.md"
validation: "bmad/bmm/workflows/3-solutioning/architecture/checklist.md"
template: "bmad/bmm/workflows/3-solutioning/architecture/architecture-template.md"
# Knowledge base files for decision making
decision_catalog: "bmad/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml"
architecture_patterns: "bmad/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml"
pattern_categories: "bmad/bmm/workflows/3-solutioning/architecture/pattern-categories.csv"
# Task dependencies
adv_elicit_task: "bmad/core/tasks/adv-elicit.xml"
# Default configuration values (can be overridden during bundle setup)
defaults:
user_name: "User"
communication_language: "English"
document_output_language: "English"
user_skill_level: "intermediate"
output_folder: "./output"
# Input/output configuration for web deployment
default_output_file: "{output_folder}/architecture.md"
# Complete file list - ALL files this workflow depends on
web_bundle_files:
# Core workflow files
- "bmad/bmm/workflows/3-solutioning/architecture/instructions.md"
- "bmad/bmm/workflows/3-solutioning/architecture/checklist.md"
- "bmad/bmm/workflows/3-solutioning/architecture/architecture-template.md"
# Knowledge base data files
- "bmad/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml"
- "bmad/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml"
- "bmad/bmm/workflows/3-solutioning/architecture/pattern-categories.csv"
# Task dependencies (referenced in instructions.md)
- "bmad/core/tasks/workflow.xml"
- "bmad/core/tasks/adv-elicit.xml"