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-12-13 16:22:34 +08:00
|
|
|
1. **Reference in Chat**: Use `@_bmad/{module}/agents/{agent-name}`
|
|
|
|
|
2. **Include Entire Module**: Use `@_bmad/{module}`
|
|
|
|
|
3. **Reference Index**: Use `@_bmad/index` for all available agents
|
2025-09-28 23:17:07 -05:00
|
|
|
|
|
|
|
|
### Examples
|
|
|
|
|
|
|
|
|
|
```
|
2025-12-13 16:22:34 +08:00
|
|
|
@_bmad/core/agents/dev - Activate dev agent
|
|
|
|
|
@_bmad/bmm/agents/architect - Activate architect agent
|
|
|
|
|
@_bmad/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-12-13 16:22:34 +08:00
|
|
|
- Can combine multiple agents: `@_bmad/core/agents/dev @_bmad/core/agents/test`
|