AGENT SKILLS

Teach agents expert workflows

Import from catalogs, AI-generate from text, or upload manually. Portable skill packages following the agentskills.io spec.

Agent Skills catalog showing skills from Anthropic, OpenAI, and Skills.sh sources

Agent Skills catalog — browse and import skills from Anthropic, OpenAI, and Skills.sh

HOW IT WORKS

From intent to expert agent in minutes

Three Ways to Create

Import skills from the Anthropic catalog or skills.sh community registry. AI-generate a skill from a natural language description. Or upload a SKILL.md file directly. Every skill follows the agentskills.io open spec.

Playground with agent chat, tools list, and skills loaded

Progressive Loading

Level 1: skill metadata loads at startup — just 50 tokens. Level 2: the full SKILL.md loads when relevant — up to 5K tokens. Level 3: additional files and scripts load on demand. This keeps agent context windows lean while having deep knowledge available when needed.

Level 1
Metadata~50 tokens
Level 2
Full SKILL.md~5K tokens
Level 3
Scripts & ResourcesOn demand

AI Skill Generation

Describe what you want in plain English. The Deep Agent generates a complete SKILL.md with metadata, instructions, workflow steps, and tool references. Streamed via SSE so you see progress in real time.

POST/api/v1/skills/generate
// Request
{
"intent": "Review PRs for security vulnerabilities",
"mcp_server_id": "550e8400-..."
}
SSE Stream
▸ Analyzing intent...
▸ Mapping to GitHub server tools...
▸ Generating SKILL.md...
Created "security-pr-reviewer" v1.0.0
3 tools referenced · 2 workflow steps
Deep Agent with workspace tools

Install on Sandboxes

Skills are portable ZIP packages containing a SKILL.md plus optional scripts and resources. Install them directly into sandboxes where agents can reference the instructions and execute the bundled scripts.

POST/api/v1/sandboxes/{id}/skills
// Request
{
"skill_ids": ["abc123...", "def456..."]
}
200 OK
{
"installed": ["security-pr-reviewer", "data-analyzer"],
"already_installed": [],
"extraction_errors": []
}
Portable .skill packages (ZIP)

API REFERENCE

Complete REST API

Import, generate, manage, and distribute skills programmatically.

GET/api/v1/skills/catalog/anthropics
// No request body
200 OK
{
"items": [{
"name": "github-pr-reviewer",
"author": "Anthropic",
"version": "1.2.0",
"tags": ["github", "code-review"]
}],
"total": 24
}
Anthropic + skills.sh catalogs
POST/api/v1/skills/import
// Request
{
"source": "anthropics",
"skill_name": "github-pr-reviewer",
"mcp_server_id": "550e8400-..."
}
201 Created
{
"id": "abc123...",
"name": "github-pr-reviewer",
"source_type": "imported"
}
One-click catalog import
POST/api/v1/skills/generate
// Request
{
"intent": "Analyze CSV data and produce charts"
}
SSE Stream
event: progress
data: "Analyzing intent..."
event: complete
data: { "name": "data-analyzer", "version": "1.0.0" }
Streamed via Server-Sent Events
GET/api/v1/skills/{id}/package
// No request body
200 OK
Content-Type: application/zip
Content-Disposition: attachment;
filename="github-pr-reviewer.skill"
[4,096 bytes — SKILL.md + scripts/]
Portable .skill ZIP package

Ready to teach your agents?

Import skills from the community or generate your own. Give every agent expert-level workflows.