bmad-method 4.22.0 → 4.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -755,76 +755,73 @@ Choose an action (0-9 - 9 to bypass - HELP for explanation of these options):
755
755
 
756
756
  ## Purpose
757
757
 
758
- - Generate documents from any specified template following embedded instructions from the perspective of the selected agent persona
758
+ Generate documents from templates by EXECUTING (not just reading) embedded instructions from the perspective of the selected agent persona.
759
759
 
760
- ## Instructions
761
-
762
- ### 1. Identify Template and Context
763
-
764
- - Determine which template to use (user-provided or list available for selection to user)
760
+ ## CRITICAL RULES
765
761
 
766
- - Agent-specific templates are listed in the agent's dependencies under `templates`. For each template listed, consider it a document the agent can create. So if an agent has:
762
+ 1. **Templates are PROGRAMS** - Execute every [[LLM:]] instruction exactly as written
763
+ 2. **NEVER show markup** - Hide all [[LLM:]], {{placeholders}}, @{examples}, and template syntax
764
+ 3. **STOP and EXECUTE** - When you see "apply tasks#" or "execute tasks#", STOP and run that task immediately
765
+ 4. **WAIT for user input** - At review points and after elicitation tasks
767
766
 
768
- @{example}
769
- dependencies:
770
- templates: - prd-tmpl - architecture-tmpl
771
- @{/example}
772
-
773
- You would offer to create "PRD" and "Architecture" documents when the user asks what you can help with.
767
+ ## Execution Flow
774
768
 
775
- - Gather all relevant inputs, or ask for them, or else rely on user providing necessary details to complete the document
776
- - Understand the document purpose and target audience
769
+ ### 1. Identify Template
777
770
 
778
- ### 2. Determine Interaction Mode
771
+ - Load from `templates#*` or `{root}/templates directory`
772
+ - Agent-specific templates are listed in agent's dependencies
773
+ - If agent has `templates: [prd-tmpl, architecture-tmpl]`, offer to create "PRD" and "Architecture" documents
779
774
 
780
- Confirm with the user their preferred interaction style:
775
+ ### 2. Ask Interaction Mode
781
776
 
782
- - **Incremental:** Work through chunks of the document.
783
- - **YOLO Mode:** Draft complete document making reasonable assumptions in one shot. (Can be entered also after starting incremental by just typing /yolo)
777
+ > 1. **Incremental** - Section by section with reviews
778
+ > 2. **YOLO Mode** - Complete draft then review (user can type `/yolo` anytime to switch)
784
779
 
785
780
  ### 3. Execute Template
786
781
 
787
- - Load specified template from `templates#*` or the `{root}/templates directory`
788
- - Follow ALL embedded LLM instructions within the template
789
- - Process template markup according to `utils#template-format` or `{root}/utils/template-format` conventions
782
+ - Replace {{placeholders}} with real content
783
+ - Execute [[LLM:]] instructions as you encounter them
784
+ - Process <<REPEAT>> loops and ^^CONDITIONS^^
785
+ - Use @{examples} for guidance but never output them
790
786
 
791
- ### 4. Template Processing Rules
787
+ ### 4. Key Execution Patterns
792
788
 
793
- #### CRITICAL: Never display template markup, LLM instructions, or examples to users
789
+ **When you see:** `[[LLM: Draft X and immediately execute tasks#advanced-elicitation]]`
794
790
 
795
- - Replace all {{placeholders}} with actual content
796
- - Execute all [[LLM: instructions]] internally
797
- - Process `<<REPEAT>>` sections as needed
798
- - Evaluate ^^CONDITION^^ blocks and include only if applicable
799
- - Use @{examples} for guidance but never output them
791
+ - Draft the content
792
+ - Present it to user
793
+ - IMMEDIATELY execute the task
794
+ - Wait for completion before continuing
800
795
 
801
- ### 5. Content Generation
796
+ **When you see:** `[[LLM: After section completion, apply tasks#Y]]`
802
797
 
803
- - **Incremental Mode**: Present each major section for review before proceeding
804
- - **YOLO Mode**: Generate all sections, then review complete document with user
805
- - Apply any elicitation protocols specified in template
806
- - Incorporate user feedback and iterate as needed
798
+ - Finish the section
799
+ - STOP and execute the task
800
+ - Wait for user input
807
801
 
808
- ### 6. Validation
802
+ ### 5. Validation & Final Presentation
809
803
 
810
- If template specifies a checklist:
804
+ - Run any specified checklists
805
+ - Present clean, formatted content only
806
+ - No truncation or summarization
807
+ - Begin directly with content (no preamble)
808
+ - Include any handoff prompts from template
811
809
 
812
- - Run the appropriate checklist against completed document
813
- - Document completion status for each item
814
- - Address any deficiencies found
815
- - Present validation summary to user
810
+ ## Common Mistakes to Avoid
816
811
 
817
- ### 7. Final Presentation
812
+ Skipping elicitation tasks
813
+ ❌ Showing template markup to users
814
+ ❌ Continuing past STOP signals
815
+ ❌ Combining multiple review points
818
816
 
819
- - Present clean, formatted content only
820
- - Ensure all sections are complete
821
- - DO NOT truncate or summarize content
822
- - Begin directly with document content (no preamble)
823
- - Include any handoff prompts specified in template
817
+ Execute ALL instructions in sequence
818
+ Present only clean, formatted content
819
+ Stop at every elicitation point
820
+ Wait for user confirmation when instructed
824
821
 
825
- ## Important Notes
822
+ ## Remember
826
823
 
827
- - Template markup is for AI processing only - never expose to users
824
+ Templates contain precise instructions for a reason. Follow them exactly to ensure document quality and completeness.
828
825
  ==================== END: tasks#create-doc ====================
829
826
 
830
827
  ==================== START: tasks#kb-mode-interaction ====================
@@ -981,7 +978,7 @@ BMAD transforms you into a "Vibe CEO" - directing a team of specialized AI agent
981
978
  5. Type `/help` to see available commands
982
979
 
983
980
  #### Option 2: IDE Integration
984
- **Best for**: Cursor, Claude Code, Windsurf, Cline, Roo Code users
981
+ **Best for**: Cursor, Claude Code, Windsurf, Cline, Roo Code, VS Code Copilot users
985
982
 
986
983
  ```bash
987
984
  # Interactive installation (recommended)
@@ -599,76 +599,73 @@ Choose an action (0-9 - 9 to bypass - HELP for explanation of these options):
599
599
 
600
600
  ## Purpose
601
601
 
602
- - Generate documents from any specified template following embedded instructions from the perspective of the selected agent persona
602
+ Generate documents from templates by EXECUTING (not just reading) embedded instructions from the perspective of the selected agent persona.
603
603
 
604
- ## Instructions
605
-
606
- ### 1. Identify Template and Context
607
-
608
- - Determine which template to use (user-provided or list available for selection to user)
604
+ ## CRITICAL RULES
609
605
 
610
- - Agent-specific templates are listed in the agent's dependencies under `templates`. For each template listed, consider it a document the agent can create. So if an agent has:
606
+ 1. **Templates are PROGRAMS** - Execute every [[LLM:]] instruction exactly as written
607
+ 2. **NEVER show markup** - Hide all [[LLM:]], {{placeholders}}, @{examples}, and template syntax
608
+ 3. **STOP and EXECUTE** - When you see "apply tasks#" or "execute tasks#", STOP and run that task immediately
609
+ 4. **WAIT for user input** - At review points and after elicitation tasks
611
610
 
612
- @{example}
613
- dependencies:
614
- templates: - prd-tmpl - architecture-tmpl
615
- @{/example}
616
-
617
- You would offer to create "PRD" and "Architecture" documents when the user asks what you can help with.
611
+ ## Execution Flow
618
612
 
619
- - Gather all relevant inputs, or ask for them, or else rely on user providing necessary details to complete the document
620
- - Understand the document purpose and target audience
613
+ ### 1. Identify Template
621
614
 
622
- ### 2. Determine Interaction Mode
615
+ - Load from `templates#*` or `{root}/templates directory`
616
+ - Agent-specific templates are listed in agent's dependencies
617
+ - If agent has `templates: [prd-tmpl, architecture-tmpl]`, offer to create "PRD" and "Architecture" documents
623
618
 
624
- Confirm with the user their preferred interaction style:
619
+ ### 2. Ask Interaction Mode
625
620
 
626
- - **Incremental:** Work through chunks of the document.
627
- - **YOLO Mode:** Draft complete document making reasonable assumptions in one shot. (Can be entered also after starting incremental by just typing /yolo)
621
+ > 1. **Incremental** - Section by section with reviews
622
+ > 2. **YOLO Mode** - Complete draft then review (user can type `/yolo` anytime to switch)
628
623
 
629
624
  ### 3. Execute Template
630
625
 
631
- - Load specified template from `templates#*` or the `{root}/templates directory`
632
- - Follow ALL embedded LLM instructions within the template
633
- - Process template markup according to `utils#template-format` or `{root}/utils/template-format` conventions
626
+ - Replace {{placeholders}} with real content
627
+ - Execute [[LLM:]] instructions as you encounter them
628
+ - Process <<REPEAT>> loops and ^^CONDITIONS^^
629
+ - Use @{examples} for guidance but never output them
634
630
 
635
- ### 4. Template Processing Rules
631
+ ### 4. Key Execution Patterns
636
632
 
637
- #### CRITICAL: Never display template markup, LLM instructions, or examples to users
633
+ **When you see:** `[[LLM: Draft X and immediately execute tasks#advanced-elicitation]]`
638
634
 
639
- - Replace all {{placeholders}} with actual content
640
- - Execute all [[LLM: instructions]] internally
641
- - Process `<<REPEAT>>` sections as needed
642
- - Evaluate ^^CONDITION^^ blocks and include only if applicable
643
- - Use @{examples} for guidance but never output them
635
+ - Draft the content
636
+ - Present it to user
637
+ - IMMEDIATELY execute the task
638
+ - Wait for completion before continuing
644
639
 
645
- ### 5. Content Generation
640
+ **When you see:** `[[LLM: After section completion, apply tasks#Y]]`
646
641
 
647
- - **Incremental Mode**: Present each major section for review before proceeding
648
- - **YOLO Mode**: Generate all sections, then review complete document with user
649
- - Apply any elicitation protocols specified in template
650
- - Incorporate user feedback and iterate as needed
642
+ - Finish the section
643
+ - STOP and execute the task
644
+ - Wait for user input
651
645
 
652
- ### 6. Validation
646
+ ### 5. Validation & Final Presentation
653
647
 
654
- If template specifies a checklist:
648
+ - Run any specified checklists
649
+ - Present clean, formatted content only
650
+ - No truncation or summarization
651
+ - Begin directly with content (no preamble)
652
+ - Include any handoff prompts from template
655
653
 
656
- - Run the appropriate checklist against completed document
657
- - Document completion status for each item
658
- - Address any deficiencies found
659
- - Present validation summary to user
654
+ ## Common Mistakes to Avoid
660
655
 
661
- ### 7. Final Presentation
656
+ Skipping elicitation tasks
657
+ ❌ Showing template markup to users
658
+ ❌ Continuing past STOP signals
659
+ ❌ Combining multiple review points
662
660
 
663
- - Present clean, formatted content only
664
- - Ensure all sections are complete
665
- - DO NOT truncate or summarize content
666
- - Begin directly with document content (no preamble)
667
- - Include any handoff prompts specified in template
661
+ Execute ALL instructions in sequence
662
+ Present only clean, formatted content
663
+ Stop at every elicitation point
664
+ Wait for user confirmation when instructed
668
665
 
669
- ## Important Notes
666
+ ## Remember
670
667
 
671
- - Template markup is for AI processing only - never expose to users
668
+ Templates contain precise instructions for a reason. Follow them exactly to ensure document quality and completeness.
672
669
  ==================== END: tasks#create-doc ====================
673
670
 
674
671
  ==================== START: tasks#kb-mode-interaction ====================
@@ -825,7 +822,7 @@ BMAD transforms you into a "Vibe CEO" - directing a team of specialized AI agent
825
822
  5. Type `/help` to see available commands
826
823
 
827
824
  #### Option 2: IDE Integration
828
- **Best for**: Cursor, Claude Code, Windsurf, Cline, Roo Code users
825
+ **Best for**: Cursor, Claude Code, Windsurf, Cline, Roo Code, VS Code Copilot users
829
826
 
830
827
  ```bash
831
828
  # Interactive installation (recommended)
@@ -499,76 +499,73 @@ Choose an action (0-9 - 9 to bypass - HELP for explanation of these options):
499
499
 
500
500
  ## Purpose
501
501
 
502
- - Generate documents from any specified template following embedded instructions from the perspective of the selected agent persona
502
+ Generate documents from templates by EXECUTING (not just reading) embedded instructions from the perspective of the selected agent persona.
503
503
 
504
- ## Instructions
505
-
506
- ### 1. Identify Template and Context
507
-
508
- - Determine which template to use (user-provided or list available for selection to user)
504
+ ## CRITICAL RULES
509
505
 
510
- - Agent-specific templates are listed in the agent's dependencies under `templates`. For each template listed, consider it a document the agent can create. So if an agent has:
506
+ 1. **Templates are PROGRAMS** - Execute every [[LLM:]] instruction exactly as written
507
+ 2. **NEVER show markup** - Hide all [[LLM:]], {{placeholders}}, @{examples}, and template syntax
508
+ 3. **STOP and EXECUTE** - When you see "apply tasks#" or "execute tasks#", STOP and run that task immediately
509
+ 4. **WAIT for user input** - At review points and after elicitation tasks
511
510
 
512
- @{example}
513
- dependencies:
514
- templates: - prd-tmpl - architecture-tmpl
515
- @{/example}
516
-
517
- You would offer to create "PRD" and "Architecture" documents when the user asks what you can help with.
511
+ ## Execution Flow
518
512
 
519
- - Gather all relevant inputs, or ask for them, or else rely on user providing necessary details to complete the document
520
- - Understand the document purpose and target audience
513
+ ### 1. Identify Template
521
514
 
522
- ### 2. Determine Interaction Mode
515
+ - Load from `templates#*` or `{root}/templates directory`
516
+ - Agent-specific templates are listed in agent's dependencies
517
+ - If agent has `templates: [prd-tmpl, architecture-tmpl]`, offer to create "PRD" and "Architecture" documents
523
518
 
524
- Confirm with the user their preferred interaction style:
519
+ ### 2. Ask Interaction Mode
525
520
 
526
- - **Incremental:** Work through chunks of the document.
527
- - **YOLO Mode:** Draft complete document making reasonable assumptions in one shot. (Can be entered also after starting incremental by just typing /yolo)
521
+ > 1. **Incremental** - Section by section with reviews
522
+ > 2. **YOLO Mode** - Complete draft then review (user can type `/yolo` anytime to switch)
528
523
 
529
524
  ### 3. Execute Template
530
525
 
531
- - Load specified template from `templates#*` or the `{root}/templates directory`
532
- - Follow ALL embedded LLM instructions within the template
533
- - Process template markup according to `utils#template-format` or `{root}/utils/template-format` conventions
526
+ - Replace {{placeholders}} with real content
527
+ - Execute [[LLM:]] instructions as you encounter them
528
+ - Process <<REPEAT>> loops and ^^CONDITIONS^^
529
+ - Use @{examples} for guidance but never output them
534
530
 
535
- ### 4. Template Processing Rules
531
+ ### 4. Key Execution Patterns
536
532
 
537
- #### CRITICAL: Never display template markup, LLM instructions, or examples to users
533
+ **When you see:** `[[LLM: Draft X and immediately execute tasks#advanced-elicitation]]`
538
534
 
539
- - Replace all {{placeholders}} with actual content
540
- - Execute all [[LLM: instructions]] internally
541
- - Process `<<REPEAT>>` sections as needed
542
- - Evaluate ^^CONDITION^^ blocks and include only if applicable
543
- - Use @{examples} for guidance but never output them
535
+ - Draft the content
536
+ - Present it to user
537
+ - IMMEDIATELY execute the task
538
+ - Wait for completion before continuing
544
539
 
545
- ### 5. Content Generation
540
+ **When you see:** `[[LLM: After section completion, apply tasks#Y]]`
546
541
 
547
- - **Incremental Mode**: Present each major section for review before proceeding
548
- - **YOLO Mode**: Generate all sections, then review complete document with user
549
- - Apply any elicitation protocols specified in template
550
- - Incorporate user feedback and iterate as needed
542
+ - Finish the section
543
+ - STOP and execute the task
544
+ - Wait for user input
551
545
 
552
- ### 6. Validation
546
+ ### 5. Validation & Final Presentation
553
547
 
554
- If template specifies a checklist:
548
+ - Run any specified checklists
549
+ - Present clean, formatted content only
550
+ - No truncation or summarization
551
+ - Begin directly with content (no preamble)
552
+ - Include any handoff prompts from template
555
553
 
556
- - Run the appropriate checklist against completed document
557
- - Document completion status for each item
558
- - Address any deficiencies found
559
- - Present validation summary to user
554
+ ## Common Mistakes to Avoid
560
555
 
561
- ### 7. Final Presentation
556
+ Skipping elicitation tasks
557
+ ❌ Showing template markup to users
558
+ ❌ Continuing past STOP signals
559
+ ❌ Combining multiple review points
562
560
 
563
- - Present clean, formatted content only
564
- - Ensure all sections are complete
565
- - DO NOT truncate or summarize content
566
- - Begin directly with document content (no preamble)
567
- - Include any handoff prompts specified in template
561
+ Execute ALL instructions in sequence
562
+ Present only clean, formatted content
563
+ Stop at every elicitation point
564
+ Wait for user confirmation when instructed
568
565
 
569
- ## Important Notes
566
+ ## Remember
570
567
 
571
- - Template markup is for AI processing only - never expose to users
568
+ Templates contain precise instructions for a reason. Follow them exactly to ensure document quality and completeness.
572
569
  ==================== END: tasks#create-doc ====================
573
570
 
574
571
  ==================== START: tasks#kb-mode-interaction ====================
@@ -725,7 +722,7 @@ BMAD transforms you into a "Vibe CEO" - directing a team of specialized AI agent
725
722
  5. Type `/help` to see available commands
726
723
 
727
724
  #### Option 2: IDE Integration
728
- **Best for**: Cursor, Claude Code, Windsurf, Cline, Roo Code users
725
+ **Best for**: Cursor, Claude Code, Windsurf, Cline, Roo Code, VS Code Copilot users
729
726
 
730
727
  ```bash
731
728
  # Interactive installation (recommended)
@@ -531,76 +531,73 @@ Choose an action (0-9 - 9 to bypass - HELP for explanation of these options):
531
531
 
532
532
  ## Purpose
533
533
 
534
- - Generate documents from any specified template following embedded instructions from the perspective of the selected agent persona
534
+ Generate documents from templates by EXECUTING (not just reading) embedded instructions from the perspective of the selected agent persona.
535
535
 
536
- ## Instructions
537
-
538
- ### 1. Identify Template and Context
539
-
540
- - Determine which template to use (user-provided or list available for selection to user)
536
+ ## CRITICAL RULES
541
537
 
542
- - Agent-specific templates are listed in the agent's dependencies under `templates`. For each template listed, consider it a document the agent can create. So if an agent has:
538
+ 1. **Templates are PROGRAMS** - Execute every [[LLM:]] instruction exactly as written
539
+ 2. **NEVER show markup** - Hide all [[LLM:]], {{placeholders}}, @{examples}, and template syntax
540
+ 3. **STOP and EXECUTE** - When you see "apply tasks#" or "execute tasks#", STOP and run that task immediately
541
+ 4. **WAIT for user input** - At review points and after elicitation tasks
543
542
 
544
- @{example}
545
- dependencies:
546
- templates: - prd-tmpl - architecture-tmpl
547
- @{/example}
548
-
549
- You would offer to create "PRD" and "Architecture" documents when the user asks what you can help with.
543
+ ## Execution Flow
550
544
 
551
- - Gather all relevant inputs, or ask for them, or else rely on user providing necessary details to complete the document
552
- - Understand the document purpose and target audience
545
+ ### 1. Identify Template
553
546
 
554
- ### 2. Determine Interaction Mode
547
+ - Load from `templates#*` or `{root}/templates directory`
548
+ - Agent-specific templates are listed in agent's dependencies
549
+ - If agent has `templates: [prd-tmpl, architecture-tmpl]`, offer to create "PRD" and "Architecture" documents
555
550
 
556
- Confirm with the user their preferred interaction style:
551
+ ### 2. Ask Interaction Mode
557
552
 
558
- - **Incremental:** Work through chunks of the document.
559
- - **YOLO Mode:** Draft complete document making reasonable assumptions in one shot. (Can be entered also after starting incremental by just typing /yolo)
553
+ > 1. **Incremental** - Section by section with reviews
554
+ > 2. **YOLO Mode** - Complete draft then review (user can type `/yolo` anytime to switch)
560
555
 
561
556
  ### 3. Execute Template
562
557
 
563
- - Load specified template from `templates#*` or the `{root}/templates directory`
564
- - Follow ALL embedded LLM instructions within the template
565
- - Process template markup according to `utils#template-format` or `{root}/utils/template-format` conventions
558
+ - Replace {{placeholders}} with real content
559
+ - Execute [[LLM:]] instructions as you encounter them
560
+ - Process <<REPEAT>> loops and ^^CONDITIONS^^
561
+ - Use @{examples} for guidance but never output them
566
562
 
567
- ### 4. Template Processing Rules
563
+ ### 4. Key Execution Patterns
568
564
 
569
- #### CRITICAL: Never display template markup, LLM instructions, or examples to users
565
+ **When you see:** `[[LLM: Draft X and immediately execute tasks#advanced-elicitation]]`
570
566
 
571
- - Replace all {{placeholders}} with actual content
572
- - Execute all [[LLM: instructions]] internally
573
- - Process `<<REPEAT>>` sections as needed
574
- - Evaluate ^^CONDITION^^ blocks and include only if applicable
575
- - Use @{examples} for guidance but never output them
567
+ - Draft the content
568
+ - Present it to user
569
+ - IMMEDIATELY execute the task
570
+ - Wait for completion before continuing
576
571
 
577
- ### 5. Content Generation
572
+ **When you see:** `[[LLM: After section completion, apply tasks#Y]]`
578
573
 
579
- - **Incremental Mode**: Present each major section for review before proceeding
580
- - **YOLO Mode**: Generate all sections, then review complete document with user
581
- - Apply any elicitation protocols specified in template
582
- - Incorporate user feedback and iterate as needed
574
+ - Finish the section
575
+ - STOP and execute the task
576
+ - Wait for user input
583
577
 
584
- ### 6. Validation
578
+ ### 5. Validation & Final Presentation
585
579
 
586
- If template specifies a checklist:
580
+ - Run any specified checklists
581
+ - Present clean, formatted content only
582
+ - No truncation or summarization
583
+ - Begin directly with content (no preamble)
584
+ - Include any handoff prompts from template
587
585
 
588
- - Run the appropriate checklist against completed document
589
- - Document completion status for each item
590
- - Address any deficiencies found
591
- - Present validation summary to user
586
+ ## Common Mistakes to Avoid
592
587
 
593
- ### 7. Final Presentation
588
+ Skipping elicitation tasks
589
+ ❌ Showing template markup to users
590
+ ❌ Continuing past STOP signals
591
+ ❌ Combining multiple review points
594
592
 
595
- - Present clean, formatted content only
596
- - Ensure all sections are complete
597
- - DO NOT truncate or summarize content
598
- - Begin directly with document content (no preamble)
599
- - Include any handoff prompts specified in template
593
+ Execute ALL instructions in sequence
594
+ Present only clean, formatted content
595
+ Stop at every elicitation point
596
+ Wait for user confirmation when instructed
600
597
 
601
- ## Important Notes
598
+ ## Remember
602
599
 
603
- - Template markup is for AI processing only - never expose to users
600
+ Templates contain precise instructions for a reason. Follow them exactly to ensure document quality and completeness.
604
601
  ==================== END: tasks#create-doc ====================
605
602
 
606
603
  ==================== START: tasks#kb-mode-interaction ====================
@@ -757,7 +754,7 @@ BMAD transforms you into a "Vibe CEO" - directing a team of specialized AI agent
757
754
  5. Type `/help` to see available commands
758
755
 
759
756
  #### Option 2: IDE Integration
760
- **Best for**: Cursor, Claude Code, Windsurf, Cline, Roo Code users
757
+ **Best for**: Cursor, Claude Code, Windsurf, Cline, Roo Code, VS Code Copilot users
761
758
 
762
759
  ```bash
763
760
  # Interactive installation (recommended)
@@ -22,7 +22,7 @@ The BMAD Method follows a structured approach to AI-assisted software developmen
22
22
  ```
23
23
 
24
24
  - Choose "Complete installation"
25
- - Select your IDE (Cursor, Claude Code, Windsurf, or Roo Code)
25
+ - Select your IDE (Cursor, Claude Code, Windsurf, Roo Code, or VS Code Copilot)
26
26
 
27
27
  2. **Verify installation**:
28
28
  - `.bmad-core/` folder created with all agents
@@ -113,6 +113,7 @@ Follow the SM → Dev cycle for systematic story development:
113
113
  - **Cursor**: `@agent-name` (e.g., `@bmad-master`)
114
114
  - **Windsurf**: `@agent-name` (e.g., `@bmad-master`)
115
115
  - **Roo Code**: Select mode from mode selector (e.g., `bmad-bmad-master`)
116
+ - **VS Code Copilot**: Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector.
116
117
 
117
118
  ### Chat Management:
118
119
 
@@ -292,7 +292,8 @@ bmad-method/
292
292
  │ │ ├── cline-guide.md
293
293
  │ │ ├── gemini-cli-guide.md
294
294
  │ │ ├── roo-code-guide.md
295
- │ │ └── windsurf-guide.md
295
+ │ │ ├── windsurf-guide.md
296
+ │ │ └── vs-code-copilot-guide.md
296
297
  │ ├── bmad-workflow-guide.md # Universal workflow guide
297
298
  │ ├── core-architecture.md # This document
298
299
  │ ├── expansion-packs.md # Expansion pack guide
@@ -1,5 +1,5 @@
1
1
  name: bmad-2d-phaser-game-dev
2
- version: 1.1.2
2
+ version: 1.2.0
3
3
  short-title: 2D game development with Phaser 3 & TypeScript
4
4
  description: >-
5
5
  2D Game Development expansion pack for BMAD Method - Phaser 3 & TypeScript
@@ -1,5 +1,5 @@
1
1
  name: bmad-creator-tools
2
- version: 1.0.2
2
+ version: 1.1.0
3
3
  short-title: Tools for creating BMAD framework components
4
4
  description: Tools for creating and extending BMAD framework components.
5
5
  author: Brian (BMad)
@@ -1,5 +1,5 @@
1
1
  name: bmad-infrastructure-devops
2
- version: 1.0.2
2
+ version: 1.1.0
3
3
  short-title: Infrastructure and DevOps capabilities
4
4
  description: >-
5
5
  This expansion pack extends BMAD Method with comprehensive infrastructure and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bmad-method",
3
- "version": "4.22.0",
3
+ "version": "4.23.0",
4
4
  "description": "Breakthrough Method of Agile AI-driven Development",
5
5
  "main": "tools/cli.js",
6
6
  "bin": {
@@ -50,7 +50,7 @@ program
50
50
  .option('-f, --full', 'Install complete BMAD Method')
51
51
  .option('-x, --expansion-only', 'Install only expansion packs (no bmad-core)')
52
52
  .option('-d, --directory <path>', 'Installation directory')
53
- .option('-i, --ide <ide...>', 'Configure for specific IDE(s) - can specify multiple (cursor, claude-code, windsurf, roo, cline, gemini, other)')
53
+ .option('-i, --ide <ide...>', 'Configure for specific IDE(s) - can specify multiple (cursor, claude-code, windsurf, roo, cline, gemini, vs-code-copilot, other)')
54
54
  .option('-e, --expansion-packs <packs...>', 'Install specific expansion packs (can specify multiple)')
55
55
  .action(async (options) => {
56
56
  try {
@@ -236,7 +236,8 @@ async function promptInstallation() {
236
236
  { name: 'Windsurf', value: 'windsurf' },
237
237
  { name: 'Roo Code', value: 'roo' },
238
238
  { name: 'Cline', value: 'cline' },
239
- { name: 'Gemini CLI', value: 'gemini' }
239
+ { name: 'Gemini CLI', value: 'gemini' },
240
+ { name: 'VS Code Copilot', value: 'vs-code-copilot' }
240
241
  ]
241
242
  }
242
243
  ]);
@@ -67,3 +67,16 @@ ide-configurations:
67
67
  # 2. It also configures .gemini/settings.json to load all agent files.
68
68
  # 3. Simply mention the agent in your prompt (e.g., "As @dev, ...").
69
69
  # 4. The Gemini CLI will automatically have the context for that agent.
70
+ vs-code-copilot:
71
+ name: VS Code Copilot
72
+ rule-dir: .github/chatmodes/
73
+ format: multi-file
74
+ command-suffix: .md
75
+ instructions: |
76
+ # To use BMAD agents with VS Code Copilot:
77
+ # 1. The installer creates a .github/chatmodes/ directory in your project
78
+ # 2. Open the Chat view (`⌃⌘I` on Mac, `Ctrl+Alt+I` on Windows/Linux) and select **Agent** from the chat mode selector.
79
+ # 3. The agent will adopt that persona for the conversation
80
+ # 4. Requires VS Code 1.99+ with `chat.agent.enabled: true` in settings
81
+ # 5. Agent files are stored in .github/chatmodes/
82
+ # 6. Use `/help` to see available commands and agents