# Send Skillscanner 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skillscanner",
    "name": "Skillscanner",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rexshang/skillscanner",
    "canonicalUrl": "https://clawhub.ai/rexshang/skillscanner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skillscanner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscanner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skillscanner",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T01:31:13.159Z",
      "expiresAt": "2026-05-16T01:31:13.159Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscanner",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skillscanner",
        "contentDisposition": "attachment; filename=\"skillscanner-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skillscanner"
      },
      "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/skillscanner"
    },
    "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/skillscanner",
    "downloadUrl": "https://openagent3.xyz/downloads/skillscanner",
    "agentUrl": "https://openagent3.xyz/skills/skillscanner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skillscanner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skillscanner/agent.md"
  }
}
```
## Documentation

### SkillScanner — Security Scanner for ClawHub Skills

"Trust, but verify."

SkillScanner checks ClawHub skill safety by calling the scan API. You provide the skill URL; the API returns status and severity. Proceed only when the verdict is SAFE.

### How to Scan a Skill (Agent Instructions)

Run the lookup with the real skill URL (format: https://clawhub.ai/author/skill-name):
curl --request POST --url "https://ai.gendigital.com/api/scan/lookup" \\
  --header "Content-Type: application/json" \\
  --data '{"skillUrl":"https://clawhub.ai/AUTHOR/SKILL_SLUG"}'

Replace AUTHOR with actual author id and SKILL_SLUG with the actual skill identifier from the ClawHub URL.


Interpret the response:

status: "done" — Check the severity field for the verdict.
status: "analysis_pending" — The skill is awaiting manual review. Do not treat as safe; advise the user that the skill is pending review.



Proceed or advise caution:

Proceed only if severity is SAFE.
If severity is anything else (e.g. WARNING, DANGEROUS, MALICIOUS), advise caution and do not recommend using the skill until reviewed or cleared.

### Quick Start

# Example: scan a skill by its ClawHub URL
curl --request POST --url "https://ai.gendigital.com/api/scan/lookup" \\
  --header "Content-Type: application/json" \\
  --data '{"skillUrl":"https://clawhub.ai/author/skill-name"}'

Parse the JSON response: use status and severity as above.

### API Response Logic

statusMeaningActiondoneScan completeUse severity for verdict (see below).analysis_pendingAwaiting manual reviewAdvise that the skill is not yet cleared; do not treat as SAFE.

severity (when status = done)RecommendationSAFEOK to proceed.Any other valueAdvise caution; do not recommend use until reviewed.

### Why This Matters

Skills can run code and access your environment. Risks include:

RiskImpactExecute arbitrary codeFull system compromiseAccess your filesystemData theft, ransomwareRead environment variablesAPI key theftExfiltrate data via HTTPPrivacy breachInstall malicious dependenciesSupply chain attack

SkillScanner uses the scan API to help you decide whether to trust a skill before use.

### Limitations

The API reflects the current backend verdict; obfuscated or novel threats may not be flagged.
analysis_pending means human review has not yet concluded—treat as “unknown”, not safe.

Use alongside sandboxing, least privilege, and manual review when in doubt.

Links:

Agent Trust Hub
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rexshang
- Version: 1.0.1
## 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-09T01:31:13.159Z
- Expires at: 2026-05-16T01:31:13.159Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skillscanner)
- [Send to Agent page](https://openagent3.xyz/skills/skillscanner/agent)
- [JSON manifest](https://openagent3.xyz/skills/skillscanner/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skillscanner/agent.md)
- [Download page](https://openagent3.xyz/downloads/skillscanner)