Skills¶
Skills are prompt-based extensions that teach the agent how to handle specific tasks. They live in ~/.clotho/skills/ and are loaded into the system prompt at session start.
Directory Structure¶
SKILL.md Format¶
---
name: commit
description: Stage and commit changes with a conventional commit message.
---
<full instructions for the agent>
Only the frontmatter (name, description) is injected into the system prompt. The full instructions stay on disk and are read by the agent on demand when it determines the skill applies.
How It Works¶
- At session start, Clotho scans
~/.clotho/skills/forSKILL.mdfiles - Each skill's
nameanddescriptionare added to the system prompt - When a user request matches a skill's description, the agent reads the full
SKILL.md - The agent follows the skill's instructions for that request
Skills require no code changes and no gateway restart — add a new directory and it's available immediately on the next chat session.