For the complete documentation index, see llms.txt. Markdown variants are available by appending .md to any URL or sending an Accept: text/markdown header. An agent skill is available at /.well-known/agent-skills/site-skill.md.
6
Sponsor

Registry

Use the agentcn registry with the shadcn CLI.

The agentcn registry ships complete Eve and Flue agent recipes in the shadcn registry format. Each item bundles everything one recipe needs — the agent definition, instructions, tools, skills, and workflows. Register the namespace once in components.json, then pull recipes by name with the CLI.

Setup

Add a registries entry pointing at this site. See the shadcn registry documentation for every components.json field and behavior.

{
  "registries": {
    "@agentcn": "https://agentcn.vercel.app/r/{name}.json"
  }
}

You can replace @agentcn with another namespace; it only needs to match what you pass to shadcn add.

Usage

Recipe names are <framework>/<slug> — the same path as the JSON file under /r/ (without the .json extension). Install with the namespace and the recipe name:

# Eve
npx shadcn@latest add @agentcn/eve/deep-search
# Flue
npx shadcn@latest add @agentcn/flue/deep-search

Without a registry alias, use the full URL shown on each recipe page:

$ pnpm dlx shadcn@latest add https://agentcn.vercel.app/r/eve/deep-search.json

Browse the registry

The registry index lists every recipe and the framework it ships for:

curl https://agentcn.vercel.app/r/registry.json

Browse the catalog in the Agents section, or follow the Installation guide for the one-time project setup.