# Context Files

Context files provide domain knowledge, process documentation, and templates that agents can reference.

## Structure

```
context/
├── core/           # Core system knowledge
├── development/    # Development practices and patterns
├── data/           # Data handling and processing
├── content/        # Content creation guidelines
├── project/        # Project management context
├── ui/             # UI/UX design patterns
└── templates/      # Reusable templates
```

## Usage

Agents automatically load relevant context based on the task type. You can also explicitly reference context files in prompts.

## Adding Context

1. Create a new .md file in the appropriate subdirectory
2. Follow the standard format with frontmatter
3. Keep files focused (50-200 lines)
4. Include examples where helpful
