Agent Skills
A machine-readable discovery index that lets coding agents — Claude Code, Cursor, and others that support the Agent Skills convention — find and use FetchLayer without manual setup.
Published skills
Each skill links to a SKILL.md describing exactly how an agent should call it.
Index shape
The index itself is a small JSON document agents fetch first to discover what's available:
json
{
"$schema": "https://agentskills.io/schema/v0.2.0/index.json",
"skills": [
{
"name": "reddit-search",
"type": "api",
"description": "Search public Reddit posts, communities, and users via a structured JSON API.",
"url": "https://fetchlayer.dev/.well-known/agent-skills/reddit-search/SKILL.md"
},
{
"name": "reddit-mcp",
"type": "mcp",
"description": "Access Reddit data through a Model Context Protocol server compatible with Claude, Cursor, and other MCP clients.",
"url": "https://fetchlayer.dev/.well-known/agent-skills/reddit-mcp/SKILL.md"
}
]
}