Skip to content

NestDevLab/agentwheel-registry

Repository files navigation

agentwheel Registry

Community registry for discoverable agentwheel packages.

The registry is optional. It gives agentwheel add <short-name> a public index to resolve from, but it is not a gatekeeper: direct sources such as git URLs, local paths, skillkit:..., vercel:..., mcp-registry:..., and clawhub:... continue to work without this repository.

Format

The registry is a JSON index at index.json.

{
  "schemaVersion": 1,
  "entries": [
    {
      "name": "example-pack",
      "source": "git:https://github.com/example/agent-pack.git#main",
      "type": "package",
      "description": "Example skills, rules, and instructions for agentwheel.",
      "tags": ["example", "agents"]
    }
  ]
}

Each entry has these fields:

  • name: short name used by agentwheel add <name>.
  • source: resolvable source string, such as git:..., skillkit:..., or vercel:....
  • type: one of package, skill, plugin, mcp, or adapter.
  • description: short human-readable summary.
  • tags: optional search tags.

Catalogue

Registry entries automatically appear in the generated resource catalogue. The catalogue data pipeline also discovers public OpenPack repositories and installable MCP Registry remotes. It is documented in catalogue/README.md. Browse the published site page at https://nestdevlab.github.io/agentwheel/catalogue.html.

For AI-agent assisted publishing, use AGENT.md, llms.txt, and catalogue/publish.md.

Contributing

Prefer the Agentwheel publish helper:

npx agentwheel@latest registry publish https://github.com/owner/repo \
  --description "Reusable skills and rules for coding agents." \
  --tag skills,rules

It drafts a registry entry, prints an install check, and gives you a prefilled GitHub submission URL to review. You can still open a pull request that updates index.json directly when you need a manual edit.

Entries should point to public, resolvable sources and should not require private credentials. Keep names stable, descriptions concise, and tags generic enough to help discovery.

About

Community registry for agentwheel packages.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors