fix: enable auto_continue_steps for party mode autonomy
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>
This commit is contained in:
parent
b9e6b5814b
commit
9e154055a2
|
|
@ -7,7 +7,7 @@ communication_language: "en-AU"
|
|||
output_folder: "/Users/hbl/Documents/BMAD-METHOD/bmad/output"
|
||||
|
||||
# Auto-execution
|
||||
auto_continue_steps: false
|
||||
auto_continue_steps: true # In party mode, agents work autonomously
|
||||
|
||||
# Party Mode Configuration
|
||||
party_mode:
|
||||
|
|
|
|||
Loading…
Reference in New Issue