Create a skills system for this project to help AI agents learn and retain project-specific knowledge.
# Project Skills
## Available Skills
(None yet - skills will be added as patterns emerge)
## Auto-Update Policy
When encountering new patterns worth documenting:
**Add to existing skill:**
1. Add to relevant skill's `references/` folder
2. Update the skill's `SKILL.md` Quick Reference table
**Create new skill:**skills/my-skill/ ├── SKILL.md # Required: instructions + metadata ├── references/ # Optional: detailed docs
Then update this index.
That's the minimal setup. Create skills only when patterns emerge - don't pre-plan.
- Explaining the same thing multiple times
- Hitting the same gotcha repeatedly
- Following a non-obvious workflow
---
name: skill-name
description: One line about when to use this skill.
---
# Skill Name
## When to Use
- Trigger situation 1
- Trigger situation 2
## Quick Reference
| Question | Answer |
|----------|--------|
| How do I X? | Do Y |Level 1: Single file
skills/my-skill/
└── SKILL.md
Level 2: Add references when file gets long
skills/my-skill/
├── SKILL.md
└── references/
└── DETAILS.md