{{#if has_skills}} ## Available Agent Skills Skills are located in: - Global: `~/.config/zed/skills//` - Worktree-specific: `/.agents/skills//` Each skill contains: - `SKILL.md` - Main instructions - `scripts/` - Executable scripts - `references/` - Additional documentation - `assets/` - Templates, data files, images To use a skill, first read its SKILL.md file, then explore its resources as needed. | Skill | Description | Location | |-------|-------------|----------| {{#each skills}} | {{name}} | {{description}} | {{path}} | {{/each}} When a skill is relevant to the user's request: 1. **Always start here:** Read SKILL.md to load the skill's instructions using `read_skill` with path `~/.config/zed/skills//SKILL.md` 2. **Then, based on the instructions in SKILL.md and the user's specific needs:** - Use `read_skill` to explore available resources - Use `read_skill` to read reference files - Use `bash` only to run executable scripts {{/if}}