moved bmad-core to dot folder so when adding to project it is clear its not part of the project it is added to
This commit is contained in:
@@ -4,9 +4,9 @@
|
||||
installation-options:
|
||||
full:
|
||||
name: "Complete BMAD Core"
|
||||
description: "Copy the entire bmad-core folder with all agents, templates, and tools"
|
||||
description: "Copy the entire .bmad-core folder with all agents, templates, and tools"
|
||||
action: "copy-folder"
|
||||
source: "bmad-core"
|
||||
source: ".bmad-core"
|
||||
|
||||
single-agent:
|
||||
name: "Single Agent"
|
||||
@@ -17,53 +17,53 @@ installation-options:
|
||||
# These are the core files that should be included with any single agent installation
|
||||
agent-dependencies:
|
||||
core-files:
|
||||
- "bmad-core/data/bmad-kb.md"
|
||||
- "bmad-core/data/technical-preferences.md"
|
||||
- "bmad-core/utils/template-format.md"
|
||||
- ".bmad-core/data/bmad-kb.md"
|
||||
- ".bmad-core/data/technical-preferences.md"
|
||||
- ".bmad-core/utils/template-format.md"
|
||||
|
||||
# Agent-specific dependencies (parsed from agent files or explicitly defined)
|
||||
dev:
|
||||
- "bmad-core/templates/story-tmpl.md"
|
||||
- "bmad-core/checklists/story-dod-checklist.md"
|
||||
- ".bmad-core/templates/story-tmpl.md"
|
||||
- ".bmad-core/checklists/story-dod-checklist.md"
|
||||
|
||||
pm:
|
||||
- "bmad-core/templates/prd-tmpl.md"
|
||||
- "bmad-core/checklists/pm-checklist.md"
|
||||
- "bmad-core/tasks/advanced-elicitation.md"
|
||||
- ".bmad-core/templates/prd-tmpl.md"
|
||||
- ".bmad-core/checklists/pm-checklist.md"
|
||||
- ".bmad-core/tasks/advanced-elicitation.md"
|
||||
|
||||
architect:
|
||||
- "bmad-core/templates/architecture-tmpl.md"
|
||||
- "bmad-core/checklists/architect-checklist.md"
|
||||
- ".bmad-core/templates/architecture-tmpl.md"
|
||||
- ".bmad-core/checklists/architect-checklist.md"
|
||||
|
||||
sm:
|
||||
- "bmad-core/templates/story-tmpl.md"
|
||||
- "bmad-core/checklists/story-draft-checklist.md"
|
||||
- "bmad-core/workflows/*.yml"
|
||||
- ".bmad-core/templates/story-tmpl.md"
|
||||
- ".bmad-core/checklists/story-draft-checklist.md"
|
||||
- ".bmad-core/workflows/*.yml"
|
||||
|
||||
po:
|
||||
- "bmad-core/checklists/po-master-checklist.md"
|
||||
- "bmad-core/templates/acceptance-criteria-tmpl.md"
|
||||
- ".bmad-core/checklists/po-master-checklist.md"
|
||||
- ".bmad-core/templates/acceptance-criteria-tmpl.md"
|
||||
|
||||
analyst:
|
||||
- "bmad-core/templates/prd-tmpl.md"
|
||||
- "bmad-core/tasks/advanced-elicitation.md"
|
||||
- ".bmad-core/templates/prd-tmpl.md"
|
||||
- ".bmad-core/tasks/advanced-elicitation.md"
|
||||
|
||||
qa:
|
||||
- "bmad-core/checklists/story-dod-checklist.md"
|
||||
- "bmad-core/templates/test-plan-tmpl.md"
|
||||
- ".bmad-core/checklists/story-dod-checklist.md"
|
||||
- ".bmad-core/templates/test-plan-tmpl.md"
|
||||
|
||||
ux-expert:
|
||||
- "bmad-core/templates/ux-tmpl.md"
|
||||
- ".bmad-core/templates/ux-tmpl.md"
|
||||
|
||||
# Meta agents typically need access to more resources
|
||||
bmad-master:
|
||||
- "bmad-core/templates/*.md"
|
||||
- "bmad-core/tasks/*.md"
|
||||
- "bmad-core/schemas/*.yml"
|
||||
- ".bmad-core/templates/*.md"
|
||||
- ".bmad-core/tasks/*.md"
|
||||
- ".bmad-core/schemas/*.yml"
|
||||
|
||||
bmad-orchestrator:
|
||||
- "bmad-core/agent-teams/*.yml"
|
||||
- "bmad-core/workflows/*.yml"
|
||||
- ".bmad-core/agent-teams/*.yml"
|
||||
- ".bmad-core/workflows/*.yml"
|
||||
|
||||
# IDE-specific configuration for generating rules/commands
|
||||
ide-configurations:
|
||||
@@ -118,50 +118,50 @@ ide-configurations:
|
||||
available-agents:
|
||||
- id: "analyst"
|
||||
name: "Business Analyst"
|
||||
file: "bmad-core/agents/analyst.md"
|
||||
file: ".bmad-core/agents/analyst.md"
|
||||
description: "Requirements gathering and analysis"
|
||||
|
||||
- id: "pm"
|
||||
name: "Product Manager"
|
||||
file: "bmad-core/agents/pm.md"
|
||||
file: ".bmad-core/agents/pm.md"
|
||||
description: "Product strategy and roadmap planning"
|
||||
|
||||
- id: "architect"
|
||||
name: "Solution Architect"
|
||||
file: "bmad-core/agents/architect.md"
|
||||
file: ".bmad-core/agents/architect.md"
|
||||
description: "Technical design and architecture"
|
||||
|
||||
- id: "po"
|
||||
name: "Product Owner"
|
||||
file: "bmad-core/agents/po.md"
|
||||
file: ".bmad-core/agents/po.md"
|
||||
description: "Backlog management and prioritization"
|
||||
|
||||
- id: "sm"
|
||||
name: "Scrum Master"
|
||||
file: "bmad-core/agents/sm.md"
|
||||
file: ".bmad-core/agents/sm.md"
|
||||
description: "Agile process and story creation"
|
||||
|
||||
- id: "dev"
|
||||
name: "Developer"
|
||||
file: "bmad-core/agents/dev.md"
|
||||
file: ".bmad-core/agents/dev.md"
|
||||
description: "Code implementation and testing"
|
||||
|
||||
- id: "qa"
|
||||
name: "QA Engineer"
|
||||
file: "bmad-core/agents/qa.md"
|
||||
file: ".bmad-core/agents/qa.md"
|
||||
description: "Quality assurance and testing"
|
||||
|
||||
- id: "ux-expert"
|
||||
name: "UX Expert"
|
||||
file: "bmad-core/agents/ux-expert.md"
|
||||
file: ".bmad-core/agents/ux-expert.md"
|
||||
description: "User experience design"
|
||||
|
||||
- id: "bmad-master"
|
||||
name: "BMAD Master"
|
||||
file: "bmad-core/agents/bmad-master.md"
|
||||
file: ".bmad-core/agents/bmad-master.md"
|
||||
description: "BMAD framework expert and guide"
|
||||
|
||||
- id: "bmad-orchestrator"
|
||||
name: "BMAD Orchestrator"
|
||||
file: "bmad-core/agents/bmad-orchestrator.md"
|
||||
file: ".bmad-core/agents/bmad-orchestrator.md"
|
||||
description: "Multi-agent workflow coordinator"
|
||||
|
||||
Reference in New Issue
Block a user