Use these templates when creating or consolidating project documentation.
# Project Name - Agent Guide
Brief description of the project and what it does.
## Quick Reference
| Task | Agent | Example Prompt |
|------|-------|----------------|
| Code review | `javascript-expert` | "Review this PR for issues" |
| Database work | `sql-expert` | "Optimize this query" |
| Deployment | `bash-expert` | "Deploy to staging" |
## Primary Agents
### agent-name
**When to use:** Describe scenarios where this agent excels.
**Example prompts:**
- "Example task description 1"
- "Example task description 2"
**Capabilities:**
- Capability 1
- Capability 2
### another-agent
**When to use:** Different scenarios for this agent.
**Example prompts:**
- "Another example prompt"
## Secondary Agents
### situational-agent
**When to use:** Specific situations only.
## Project Structure
project/ ├── src/ # Source code ├── tests/ # Test files ├── docs/ # Documentation └── scripts/ # Utility scripts
## Common Workflows
### Development
1. Step one of workflow
2. Step two of workflow
3. Step three of workflow
### Testing
```bash
# Run all tests
npm test
# Run specific test
npm test -- --grep "pattern"
# Build for production
npm run build
# Deploy to staging
npm run deploy:staging
npm install.env.example to .envnpm run dev
```# Project Name - Claude Code Workflow
## Project Overview
Brief description of project purpose and architecture.
## Directory Structure
- `src/` - Main source code
- `tests/` - Test suites
- `scripts/` - Automation scripts
## Development Commands
```bash
# Start development server
npm run dev
# Run tests
npm test
# Build for production
npm run build
__tests__/ directoriestests/integration/npm test before committingDEBUG=* environment variablelogs/ directoryKey architectural decisions and patterns used in this project.
## Consolidation Format
When merging multiple docs, use this structure:
```markdown
# Project Name - Agent Guide
<!-- Consolidated from: CLAUDE.md, CURSOR.md, WARP.md -->
<!-- Generated: YYYY-MM-DD -->
## Quick Reference
[Merged quick reference from all sources]
## Primary Agents
[Combined agent recommendations]
## Workflows
### General Workflows
[Platform-agnostic workflows]
### Platform-Specific Notes
<!-- Source: CURSOR.md -->
**Cursor:** Specific keybindings or features
<!-- Source: WARP.md -->
**Warp:** Terminal-specific commands
## Conventions
[Merged conventions - note any conflicts]
## Commands
[Consolidated commands with platform annotations where needed]