Skip to main content
GET

Overview

Retrieves a skill with all its content including:
  • SKILL.md - The main instructions file
  • Scripts - Executable code files
  • References - Additional documentation
  • Assets - Templates and resources

Path Parameters

string
required
The skill UUID or name (e.g., pdf-processing)

Response

string
Unique identifier
string
Skill name
string
Skill description
string
Full content of SKILL.md including YAML frontmatter
array
Array of script files
array
Array of reference files (same structure as scripts)
array
Array of asset files (same structure as scripts)
string
License information
string
Environment requirements
object
Additional metadata (author, version, etc.)

Example

MCP Tool

This endpoint is also available as the get_skill MCP tool:

Using Skills

Once you retrieve a skill, the AI agent can:
  1. Read the skill_md content for instructions
  2. Execute scripts from the scripts array
  3. Reference additional docs from references
  4. Use templates from assets
The skill provides structured guidance that agents can follow to complete specialized tasks.