# Send Agent Registry to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-registry",
    "name": "Agent Registry",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/MaTriXy/agent-registry",
    "canonicalUrl": "https://clawhub.ai/MaTriXy/agent-registry",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-registry",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-registry",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CLAUDE.md",
      "README.md",
      "SKILL.md",
      "bin/build-release-artifact.sh",
      "bin/cli.js",
      "bin/get.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-registry"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-registry",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-registry",
    "agentUrl": "https://openagent3.xyz/skills/agent-registry/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-registry/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-registry/agent.md"
  }
}
```
## Documentation

### Agent Registry

Lazy-loading system for Claude Code agents. Eliminates the "~16k tokens" warning by loading agents on-demand.

### CRITICAL RULE

NEVER assume agents are pre-loaded. Always use this registry to discover and load agents.

### Workflow

User Request → search_agents(intent) → select best match → get_agent(name) → execute with agent

### Available Commands

CommandWhen to UseExamplelist.jsUser asks "what agents do I have" or needs overviewbun bin/list.jssearch.jsFind agents matching user intent (ALWAYS do this first)bun bin/search.js "code review security"search-paged.jsPaged search for large registries (300+ agents)bun bin/search-paged.js "query" --page 1 --page-size 10get.jsLoad a specific agent's full instructionsbun bin/get.js code-reviewer

### Search First Pattern

Extract intent keywords from user request
Run search: bun bin/search.js "<keywords>"
Review results: Check relevance scores (0.0-1.0)
Load if needed: bun bin/get.js <agent-name>
Execute: Follow the loaded agent's instructions

### Example

User: "Can you review my authentication code for security issues?"

# Step 1: Search for relevant agents
bun bin/search.js "code review security authentication"

# Output:
# Found 2 matching agents:
#   1. security-auditor (score: 0.89) - Analyzes code for security vulnerabilities
#   2. code-reviewer (score: 0.71) - General code review and best practices

# Step 2: Load the best match
bun bin/get.js security-auditor

# Step 3: Follow loaded agent instructions for the task

### Step 1: Install the Skill

Quick Install (Recommended):

# Using Skills CLI (recommended)
npx skills add MaTriXy/Agent-Registry@agent-registry

# Discover skills interactively
npx skills find

# Update existing skills
npx skills update

Traditional Install:

# User-level installation
./install.sh

# OR project-level installation
./install.sh --project

# Optional: install enhanced interactive UI dependency
./install.sh --install-deps

What install.sh does:

Copies skill files to ~/.claude/skills/agent-registry/
Creates empty registry structure
Optionally installs dependencies via --install-deps (@clack/prompts for enhanced UI)

### Step 2: Migrate Your Agents

Run the interactive migration script:

cd ~/.claude/skills/agent-registry
bun bin/init.js
# Optional destructive mode:
bun bin/init.js --move

Interactive selection modes:

With @clack/prompts (default): Beautiful checkbox UI with category grouping, token indicators, and paging

Arrow keys navigate, Space toggle, Enter confirm
Visual indicators: [green] <1k tokens, [yellow] 1-3k, [red] >3k
Grouped by subdirectory



Fallback: Text-based number input

Enter comma-separated numbers (e.g., 1,3,5)
Type all to migrate everything

What init.js does:

Scans ~/.claude/agents/ and .claude/agents/ for agent files
Displays available agents with metadata
Lets you interactively select which to migrate
Copies selected agents to the registry by default (--move is explicit opt-in)
Builds search index (registry.json)

### Dependencies

Bun (ships with Claude Code) — zero additional dependencies for core functionality
@clack/prompts: Optional enhanced interactive selection UI (install via ./install.sh --install-deps)

### Registry Location

Global: ~/.claude/skills/agent-registry/
Project: .claude/skills/agent-registry/ (optional override)

Agents not migrated remain in their original locations and load normally (contributing to token overhead).
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: MaTriXy
- Version: 2.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-registry)
- [Send to Agent page](https://openagent3.xyz/skills/agent-registry/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-registry/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-registry/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-registry)