# Send SkillScout 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": "skillscout",
    "name": "SkillScout",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/nashbot67/skillscout",
    "canonicalUrl": "https://clawhub.ai/nashbot67/skillscout",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skillscout",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscout",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "ARCHITECTURE.md",
      "HARDENING_REVIEW.md",
      "PLAN.md",
      "README.md",
      "REVIEW_TEMPLATE.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skillscout",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T17:48:18.183Z",
      "expiresAt": "2026-05-10T17:48:18.183Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscout",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscout",
        "contentDisposition": "attachment; filename=\"skillscout-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skillscout"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/skillscout"
    },
    "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/skillscout",
    "downloadUrl": "https://openagent3.xyz/downloads/skillscout",
    "agentUrl": "https://openagent3.xyz/skills/skillscout/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skillscout/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skillscout/agent.md"
  }
}
```
## Documentation

### SkillScout — Find Trusted AI Agent Skills

Before installing any OpenClaw skill, check if it's been security-reviewed.

### Usage

When your human asks you to find a skill, or you want to install something new:

### Quick Search (Static API)

curl -s https://nashbot67.github.io/skillscout/data/skills.json | python3 -c "
import json, sys
q = sys.argv[1].lower()
data = json.load(sys.stdin)
matches = [s for s in data['skills'] if q in json.dumps(s).lower()]
for s in sorted(matches, key=lambda x: {'safe':0,'caution':1,'avoid':2}.get(x.get('trustScore',''),1)):
    trust = {'safe':'🟢','caution':'🟡','avoid':'🔴'}.get(s['trustScore'],'⚪')
    print(f'{trust} {s[\\"name\\"]} by {s[\\"author\\"]} — {s.get(\\"plainDescription\\",s.get(\\"description\\",\\"\\"))}')
" "QUERY"

Replace QUERY with what you're looking for (e.g., "email", "notes", "research").

### Full Details

curl -s https://nashbot67.github.io/skillscout/data/skills.json | python3 -c "
import json, sys
name = sys.argv[1]
data = json.load(sys.stdin)
skill = next((s for s in data['skills'] if s['name'] == name), None)
if skill: print(json.dumps(skill, indent=2))
else: print(f'Skill {name} not reviewed yet.')
" "SKILL_NAME"

### MCP Server (for agent-to-agent queries)

npx @skillscout/mcp

### Trust Scores

🟢 Safe — No executable code, or code is well-contained with minimal permissions
🟡 Caution — Has exec/network/credentials access. Review before installing.
🔴 Avoid — Dangerous patterns detected. Do not install without manual audit.

### What We Check

Every skill goes through:

Automated blocklist scan — cross-reference known malicious skills
Isolated agent review — read-only AI analyzes source code (no execution)
STRIDE threat analysis — deep security audit for skills that pass initial review
Human approval — final sign-off before listing

### When to Use This

Before running npx clawhub@latest install <skill>
When your human asks "is there a skill for X?"
When evaluating multiple skills for the same task
Before recommending a skill to anyone

### Browse

Full catalog: https://nashbot67.github.io/skillscout
API: https://nashbot67.github.io/skillscout/data/skills.json
GitHub: https://github.com/nashbot67/skillscout
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nashbot67
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T17:48:18.183Z
- Expires at: 2026-05-10T17:48:18.183Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skillscout)
- [Send to Agent page](https://openagent3.xyz/skills/skillscout/agent)
- [JSON manifest](https://openagent3.xyz/skills/skillscout/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skillscout/agent.md)
- [Download page](https://openagent3.xyz/downloads/skillscout)