installer for bmm includes option to include game assets or not when adding to a project.

This commit is contained in:
Brian Madison
2025-10-27 22:38:34 -05:00
parent f55e822338
commit 7ad841964d
16 changed files with 72 additions and 23 deletions

View File

@@ -66,7 +66,7 @@ node tools/cli/bundlers/bundle-web.js agent bmm pm # One agent
```bash
npm run bmad:status # Installation status
npm run validate:bundles # Validate web bundles
node tools/cli/regenerate-manifests.js # Regenerate agent-party.xml files
node tools/cli/regenerate-manifests.js # Regenerate agent-manifest.csv files
```
---
@@ -566,10 +566,10 @@ To add a new handler type (e.g., `validate-workflow`):
### Regenerating Manifests
```bash
# Regenerate agent-party.xml for all modules
# Regenerate agent-manifest.csv for all modules
node tools/cli/regenerate-manifests.js
# Location: src/modules/{module}/agents/agent-party.xml
# Location: src/modules/{module}/agents/agent-manifest.csv
```
---