The install directory is now configurable, with a few minute issues

This commit is contained in:
Brian Madison
2025-11-08 13:58:43 -06:00
parent a4bbfc4b6e
commit 1728acfb0f
224 changed files with 1303 additions and 1036 deletions

View File

@@ -419,7 +419,7 @@ Team C (2 devs): Analytics feature (3 epics)
**Problem:** Teams customize BMad (agents, workflows, configs) but don't want personal tooling in main repo.
**Anti-pattern:** Adding `bmad/` to `.gitignore` breaks IDE tools, submodule management.
**Anti-pattern:** Adding `{bmad_folder}/` to `.gitignore` breaks IDE tools, submodule management.
### The Solution: Git Submodules
@@ -457,7 +457,7 @@ git commit -m "Add BMM as submodule"
git clone https://github.com/your-org/your-project.git
cd your-project
git submodule update --init --recursive
# Make personal customizations in bmad/
# Make personal customizations in {bmad_folder}/
```
### Daily Workflow
@@ -466,7 +466,7 @@ git submodule update --init --recursive
```bash
cd /path/to/your-project
# BMad available at ./bmad/, load agents normally
# BMad available at ./{bmad_folder}/, load agents normally
```
**Update personal config:**