Skip to content

Agent Skills

IDskills
CategorySkills
FeaturesNone
Dependenciessession_file_system

Discover and activate skills from /.agents/skills/ in the session filesystem. Skills are portable instruction packages following the Agent Skills open specification.

Scan /.agents/skills/ for available skills. Returns names and descriptions only (~100 tokens per skill).

Load a skill’s full instructions by name.

ParameterTypeRequiredDescription
namestringyesSkill name (directory name under /.agents/skills/)

Returns: full SKILL.md content and list of bundled files.

Skills use progressive disclosure to keep context efficient:

  1. Discovery (~100 tokens) — list_skills returns only names and descriptions
  2. Activation (<5000 tokens) — activate_skill loads the full SKILL.md instructions
  3. Resources (on-demand) — bundled files accessible via File System tools
/.agents/skills/
deploy/
SKILL.md
templates/
k8s-deploy.yaml
code-review/
SKILL.md
  • Skills are per-session (uploaded to session filesystem)
  • Path traversal protection on skill names
  • Invalid SKILL.md files are reported but don’t block discovery of other skills
  • For organization-wide skills, see the Skills Registry