Skip to main content
Skills are read-only knowledge packages mounted into agent sandboxes at /skills/<name>/. They provide context the agent can reference — coding guidelines, API documentation, workflow guides, etc.

Two Sources of Skills

1. Standalone Skills (via skills config)

2. Plugin-Provided Skills

Plugins can register skills during their register() call:
Plugin-provided skills are referenced the same way in agent config:

Skill Package Structure

skill.json

The requires field declares dependencies:
  • tools: The agent must have these tools to use this skill
  • skills: Other skills that should also be loaded

How Skills Are Mounted

The skill’s context file (README.md by default) is included in the agent’s system prompt, giving the agent knowledge without consuming tool calls.