AI
Agent Skills
Publish reusable instructions agents can discover from your site.
A skills/ folder at the project root is served at /.well-known/skills/, so
agents can find and load your house rules.
Layout
skills/
└── writing-docs/
└── SKILL.mdEach skill needs a SKILL.md whose frontmatter carries a name and a
description:
skills/writing-docs/SKILL.md
---
name: writing-docs
description: How to write and structure pages for this documentation site.
---
# Writing docs
Every route comes from a file under `content/`...The name must be lowercase, hyphenated and at most 64 characters. Any other files in the folder are served alongside it, so a skill can ship references.
Discovery
Catalog
curl https://example.com/.well-known/skills/index.jsonThe catalog lists each skill's name, description and files:
{
"skills": [
{
"name": "writing-docs",
"description": "How to write and structure pages for this documentation site.",
"files": ["SKILL.md"]
}
]
}Only files listed in the catalog are served. A folder without a valid
SKILL.md is skipped rather than failing the build.