Problem:
Party mode was looking for workflow files in symlinked project directories
instead of following the symlink to the actual BMAD core. This caused:
- Error: 'no bmad/core/tasks/workflow.xml in signright-au'
- Party mode non-functional from any symlinked project
Root Cause:
workflow.yaml used {project-root} placeholder which resolved to the
symlinked project directory, not the actual BMAD core.
Solution:
1. Changed workflow.yaml to use {bmad-root} placeholder instead
2. Created resolve-bmad-root.sh to detect symlink targets
3. Created party-mode-launcher.sh to set BMAD_ROOT environment variable
4. Now party mode intelligently finds files from any location
Changes:
- Updated: bmad/core/workflows/party-mode/workflow.yaml
- config_source: {bmad-root}/config.yaml (instead of {project-root})
- installed_path: {bmad-root}/workflows/party-mode (instead of {project-root})
Testing Results:
✅ Resolution from signright-au: /Users/hbl/Documents/BMAD-METHOD/bmad/core
✅ Resolution from 1000-bot: /Users/hbl/Documents/BMAD-METHOD/bmad/core
✅ All workflow files accessible via resolved path
Impact:
- Party mode now works from ANY of the 85 symlinked projects
- Single source of truth for party mode behavior
- Automatic updates propagate to all projects
- No more 'workflow.xml not found' errors
🧠 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Problem:
In party mode, agents were being interrupted at every step with
'Continue to next step? (y/n/edit)?' - defeating the purpose of
autonomous agent execution.
Solution:
Changed auto_continue_steps from false to true so agents execute
without interruption in party mode.
Configuration:
auto_continue_steps: true
Impact:
- Party mode now runs fully autonomous
- Agents execute tasks without confirmation prompts
- Proper delegation behavior restored
🧠 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Missing Fields Added:
- user_name: Hamilton Bailey
- communication_language: en-AU
- output_folder: /Users/hbl/Documents/BMAD-METHOD/bmad/output
Critical Fix:
This was blocking BMad Master from loading properly. Configuration
is now complete and BMad core can initialize correctly.
Status: Configuration error resolved ✅🧠 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
* feat: migrate test architect entirely to v6
* format fixed
* feat: integrated new playwright mcp
---------
Co-authored-by: Murat Ozcan <murat@mac.lan>
- Remember previously configured IDEs before deleting bmad directory
- During full reinstall, treat all selected IDEs as newly selected
- Properly prompt for IDE configuration questions during reinstall
- Remove debug logging
- Fix manifest reading to use manifest.yaml instead of manifest.csv
- Show previously configured IDEs as selected by default in UI
- Skip configuration prompts for already configured IDEs during updates
- Properly collect IDE configurations during full reinstall
- Handle installation cancellation without throwing errors