# Send Erc8004 Discover 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": "erc8004-discover",
    "name": "Erc8004 Discover",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/aetherstacey/erc8004-discover",
    "canonicalUrl": "https://clawhub.ai/aetherstacey/erc8004-discover",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/erc8004-discover",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=erc8004-discover",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/discover.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/erc8004-discover"
    },
    "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/erc8004-discover",
    "downloadUrl": "https://openagent3.xyz/downloads/erc8004-discover",
    "agentUrl": "https://openagent3.xyz/skills/erc8004-discover/agent",
    "manifestUrl": "https://openagent3.xyz/skills/erc8004-discover/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/erc8004-discover/agent.md"
  }
}
```
## Documentation

### ERC-8004 Agent Discovery

Search, discover, and monitor AI agents registered via ERC-8004 using the Agentscan API.

### Use This When...

"Find agents that can do X"
"Search for a security auditor agent"
"Who are the top-rated agents?"
"What agents exist on Base?"
"Show me agent details"
"What skills do agents have?"
"Monitor an agent for changes"
"Has this agent's metadata changed?"
"Ecosystem statistics"

### search

Find agents by query string.

python scripts/discover.py search "<query>" [--chain CHAIN] [--min-rep SCORE] [--limit N]

Examples:

search "security auditor" - Find security auditors
search "trading" --chain base - Trading agents on Base
search "defi" --min-rep 50 - DeFi agents with 50+ reputation

### top

Show top agents by reputation.

python scripts/discover.py top [--chain CHAIN] [--limit 20]

### info

Get detailed info about a specific agent.

python scripts/discover.py info <address|name|tokenId> [--chain CHAIN]

Shows: reputation, skills, domains, decoded metadata.

### stats

Show ecosystem statistics.

python scripts/discover.py stats

Overview of total agents, per-chain breakdown, metadata coverage.

### skills

List all skills/capabilities across agents.

python scripts/discover.py skills

### monitor

Monitor an agent for changes.

python scripts/discover.py monitor <address|name|tokenId> [--chain CHAIN]

Compares current state to cached state, shows diff if changed. Useful for heartbeat monitoring.

### Pre-Registration Research

# 1. Check what agents already exist in your space
python scripts/discover.py search "trading bot"

# 2. See top competitors
python scripts/discover.py top --chain base --limit 10

# 3. Register your agent (from erc8004-register skill)
python scripts/register.py register --name "MyTradingBot" --description "..."

# 4. Validate registration
python scripts/register.py validate 42

### Due Diligence Before Interacting

# 1. Get agent details
python scripts/discover.py info 0x1234...

# 2. Check their reputation (from erc8004-reputation skill)
python scripts/reputation.py lookup 42 --chain base

# 3. Decide whether to interact

### Competitor Monitoring

# 1. Find competitors
python scripts/discover.py search "security audit"

# 2. Monitor a specific competitor
python scripts/discover.py monitor "CompetitorAgent"

# 3. Check their reputation changes
python scripts/reputation.py lookup 123 --chain base

### Heartbeat Integration

Monitor agents for changes in automated pipelines:

# Cron: check if agent changed every 15 minutes
*/15 * * * * python scripts/discover.py monitor 42 >> /var/log/agent-monitor.log 2>&1

# In a monitoring script:
#!/bin/bash
output=$(python scripts/discover.py monitor 42 2>&1)
if echo "$output" | grep -q "CHANGES DETECTED"; then
    echo "Agent 42 metadata changed!" | slack-notify
fi

Cache files are stored in /tmp/erc8004-monitor-{id}.json.

### Use Cases

ScenarioCommandFind specialistssearch "security auditor" --chain base --min-rep 50Market researchstats and skillsDue diligenceinfo <agent> then check reputationCompetitor watchmonitor <competitor>Discoverysearch "<capability>"

### API Source

All data from Agentscan - the ERC-8004 agent registry explorer.

### Related Skills

erc8004-register: Register and manage your own agents
erc8004-reputation: Check and give reputation scores
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aetherstacey
- Version: 1.1.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-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/erc8004-discover)
- [Send to Agent page](https://openagent3.xyz/skills/erc8004-discover/agent)
- [JSON manifest](https://openagent3.xyz/skills/erc8004-discover/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/erc8004-discover/agent.md)
- [Download page](https://openagent3.xyz/downloads/erc8004-discover)