2025-09-28 23:17:07 -05:00
|
|
|
# BMAD Method - Cursor Instructions
|
|
|
|
|
|
|
|
|
|
## Activating Agents
|
|
|
|
|
|
|
|
|
|
BMAD agents are installed in `.cursor/rules/bmad/` as MDC rules.
|
|
|
|
|
|
|
|
|
|
### How to Use
|
|
|
|
|
|
2025-11-12 20:22:47 -06:00
|
|
|
1. **Reference in Chat**: Use `@{bmad_folder}/{module}/agents/{agent-name}`
|
|
|
|
|
2. **Include Entire Module**: Use `@{bmad_folder}/{module}`
|
|
|
|
|
3. **Reference Index**: Use `@{bmad_folder}/index` for all available agents
|
2025-09-28 23:17:07 -05:00
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
|
|
```
|
2025-11-12 20:22:47 -06:00
|
|
|
@{bmad_folder}/core/agents/dev - Activate dev agent
|
|
|
|
|
@{bmad_folder}/bmm/agents/architect - Activate architect agent
|
|
|
|
|
@{bmad_folder}/core - Include all core agents/tasks
|
2025-09-28 23:17:07 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Notes
|
|
|
|
|
|
|
|
|
|
- Rules are Manual type - only loaded when explicitly referenced
|
|
|
|
|
- No automatic context pollution
|
2025-11-12 20:22:47 -06:00
|
|
|
- Can combine multiple agents: `@{bmad_folder}/core/agents/dev @{bmad_folder}/core/agents/test`
|