Add a skill to an agent
A skill is a SKILL.md workflow an agent can load on demand. Skills live in a
shared library: you install to the library once, then enable per agent.
Before you start
- The daemon is running.
Steps
-
See what is already in the library:
holon skills catalog -
Add a skill:
holon skills add /path/to/skill-dir holon skills add https://github.com/user/repo/tree/main/skills/my-skill --remote -
Enable it for one agent:
holon skills enable my-skill --agent reviewer -
Confirm the agent sees it:
holon skills list --agent reviewer
Confirm it worked
holon skills list --agent reviewer shows the skill, and the agent can now load
it when a task matches.
Keeping skills current
holon skills update
holon skills check
Command names, source rules, and the skills.toml schema are in the
Skills reference.
