Website Spec
← Agent Readiness
Recommended

Agent Skills discovery

A well-known URI that lists Agent Skills — short, scoped instructions an AI agent can load to work better with your site. Emerging convention via a Cloudflare-led RFC; still draft, still cheap to ship.

What it is

An Agent Skill is a small Markdown file — a SKILL.md with YAML frontmatter — that gives an AI agent a focused capability: when to use it, how to call your APIs, which conventions to follow. The format originated with Anthropic; the agentskills.io specification documents it.

Agent Skills Discovery is the convention for publishing those skills so any agent can find them. Per the Cloudflare-led discovery RFC (currently draft v0.2.0), publishers ship a JSON index at:

/.well-known/agent-skills/index.json

Each entry in the index has a name, type (skill-md or archive), description, url, and a sha256 digest of the artefact. A top-level $schema field identifies the index version.

This site publishes one such skill: /.well-known/agent-skills/specification-website/SKILL.md, advertised in /.well-known/agent-skills/index.json. It teaches an agent how to query the spec via Markdown endpoints, llms.txt, and the MCP server.

Why it matters

Adoption is early. Treat it as a low-cost bet, not a settled standard.

How to implement

Common mistakes

Verification

Sources