agent team workflows

This commit is contained in:
Brian Madison
2025-06-08 17:34:38 -05:00
parent 54406fa871
commit f1fa6256f0
31 changed files with 2280 additions and 938 deletions

View File

@@ -74,7 +74,7 @@ dependencies:
- pm-checklist
```
Team bundles are defined in `team-*.yml` files:
Team bundles are defined in the `/agent-teams/` directory as `team-*.yml` files:
```yaml
bundle:
@@ -98,7 +98,8 @@ The BMAD v4 system uses this structure:
```
BMAD-METHOD/
├── agents/ # Agent YAML configurations
├── agents/ # Individual agent YAML configurations
├── agent-teams/ # Team bundle YAML configurations
├── bmad-core/ # Core resources
│ ├── personas/ # Agent personality definitions
│ ├── tasks/ # Reusable task instructions

View File

@@ -39,7 +39,7 @@ Want to modify agents or create custom bundles?
1. **Copy bmad-core** to your project
2. **Install dependencies**: `npm install`
3. **Customize** agents in `/agents/` or resources in `/bmad-core/`
3. **Customize** agents in `/agents/`, team bundles in `/agent-teams/`, or resources in `/bmad-core/`
4. **Build**: `npm run build`
## When Do You Need npm install?