mirror of
https://github.com/bmadcode/BMAD-METHOD.git
synced 2025-12-29 16:14:59 +00:00
- Installation path is now fully configurable, allowing users to specify custom installation directories during setup
- Default installation location changed to .bmad (hidden directory) for cleaner project root organization
Web Bundle Improvements:
- All web bundles (single agent and team) now include party mode support for multi-agent collaboration!
- Advanced elicitation capabilities integrated into standalone agents
- All bundles enhanced with party mode agent manifests
- Added default-party.csv files to bmm, bmgd, and cis module teams
- The default party file is what will be used with single agent bundles. teams can customize for different party configurations before web bundling through a setting in the team yaml file
- New web bundle outputs for all agents (analyst, architect, dev, pm, sm, tea, tech-writer, ux-designer, game-*, creative-squad)
Phase 4 Workflow Updates (In Progress):
- Initiated shift to separate phase 4 implementation artifacts from documentation
- Phase 4 implementation artifacts (stories, code review, sprint plan, context files) will move to dedicated location outside docs folder
- Installer questions and configuration added for artifact path selection
- Updated workflow.yaml files for code-review, sprint-planning, story-context, epic-tech-context, and retrospective workflows to support this, but still might require some udpates
Additional Changes:
- New agent and action command header models for standardization
- Enhanced web-bundle-activation-steps fragment
- Updated web-bundler.js to support new structure
- VS Code settings updated for new .bmad directory
- Party mode instructions and workflow enhanced for better orchestration
IDE Installer Updates:
- Show version number of installer in cli
- improved Installer UX
- Gemini TOML Improved to have clear loading instructions with @ commands
- All tools agent launcher mds improved to use a central file template critical indication isntead of hardcoding in 2 different locations.
115 lines
4.2 KiB
YAML
115 lines
4.2 KiB
YAML
# Market Research Workflow - Claude Code Integration Configuration
|
|
# This file configures how subagents are installed and integrated
|
|
|
|
subagents:
|
|
# List of subagent files to be installed
|
|
files:
|
|
- bmm-market-researcher.md
|
|
- bmm-trend-spotter.md
|
|
- bmm-data-analyst.md
|
|
- bmm-competitor-analyzer.md
|
|
- bmm-user-researcher.md
|
|
|
|
# Installation configuration
|
|
installation:
|
|
prompt: "The Market Research workflow includes specialized AI subagents for enhanced research capabilities. Would you like to install them?"
|
|
location_options:
|
|
- project # Install to .claude/agents/ in project
|
|
- user # Install to ~/.claude/agents/ for all projects
|
|
default_location: project
|
|
|
|
# Content injections for the workflow
|
|
injections:
|
|
- injection_point: "market-research-subagents"
|
|
description: "Injects subagent activation instructions into the workflow"
|
|
content: |
|
|
<critical>
|
|
Claude Code Enhanced Mode: The following specialized subagents are available to enhance your market research:
|
|
|
|
- **bmm-market-researcher**: Comprehensive market intelligence gathering and analysis
|
|
- **bmm-trend-spotter**: Identifies emerging trends and weak signals
|
|
- **bmm-data-analyst**: Quantitative analysis and market sizing calculations
|
|
- **bmm-competitor-analyzer**: Deep competitive intelligence and positioning
|
|
- **bmm-user-researcher**: User research, personas, and journey mapping
|
|
|
|
These subagents will be automatically invoked when their expertise is relevant to the current research task.
|
|
Use them PROACTIVELY throughout the workflow for enhanced insights.
|
|
</critical>
|
|
|
|
- injection_point: "market-tam-calculations"
|
|
description: "Enhanced TAM calculation with data analyst"
|
|
content: |
|
|
<invoke-subagent name="bmm-data-analyst">
|
|
Calculate TAM using multiple methodologies and provide confidence intervals.
|
|
Use all available market data from previous research steps.
|
|
Show detailed calculations and assumptions.
|
|
</invoke-subagent>
|
|
|
|
- injection_point: "market-trends-analysis"
|
|
description: "Enhanced trend analysis with trend spotter"
|
|
content: |
|
|
<invoke-subagent name="bmm-trend-spotter">
|
|
Identify emerging trends, weak signals, and future disruptions.
|
|
Look for cross-industry patterns and second-order effects.
|
|
Provide timeline estimates for mainstream adoption.
|
|
</invoke-subagent>
|
|
|
|
- injection_point: "market-customer-segments"
|
|
description: "Enhanced customer research"
|
|
content: |
|
|
<invoke-subagent name="bmm-user-researcher">
|
|
Develop detailed user personas with jobs-to-be-done analysis.
|
|
Map the complete customer journey with pain points and opportunities.
|
|
Provide behavioral and psychographic insights.
|
|
</invoke-subagent>
|
|
|
|
- injection_point: "market-executive-summary"
|
|
description: "Enhanced executive summary synthesis"
|
|
content: |
|
|
<invoke-subagent name="bmm-market-researcher">
|
|
Synthesize all research findings into a compelling executive summary.
|
|
Highlight the most critical insights and strategic implications.
|
|
Ensure all key metrics and recommendations are captured.
|
|
</invoke-subagent>
|
|
|
|
# Configuration for subagent behavior
|
|
configuration:
|
|
auto_invoke: true # Automatically invoke subagents when relevant
|
|
parallel_execution: true # Allow parallel subagent execution
|
|
cache_results: true # Cache subagent outputs for reuse
|
|
|
|
# Subagent-specific configurations
|
|
subagent_config:
|
|
bmm-market-researcher:
|
|
priority: high
|
|
max_execution_time: 300 # seconds
|
|
retry_on_failure: true
|
|
|
|
bmm-trend-spotter:
|
|
priority: medium
|
|
max_execution_time: 180
|
|
retry_on_failure: false
|
|
|
|
bmm-data-analyst:
|
|
priority: high
|
|
max_execution_time: 240
|
|
retry_on_failure: true
|
|
|
|
bmm-competitor-analyzer:
|
|
priority: high
|
|
max_execution_time: 300
|
|
retry_on_failure: true
|
|
|
|
bmm-user-researcher:
|
|
priority: medium
|
|
max_execution_time: 240
|
|
retry_on_failure: false
|
|
|
|
# Metadata
|
|
metadata:
|
|
compatible_with: "claude-code-1.0+"
|
|
workflow: "market-research"
|
|
module: "bmm"
|
|
author: "BMad Builder"
|
|
description: "Claude Code enhancements for comprehensive market research"
|