# Send Clawhub Skill 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": "cs-verify",
    "name": "Clawhub Skill",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/CutTheMustard/cs-verify",
    "canonicalUrl": "https://clawhub.ai/CutTheMustard/cs-verify",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/cs-verify",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cs-verify",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "cs-verify",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T14:16:05.052Z",
      "expiresAt": "2026-05-07T14:16:05.052Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cs-verify",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cs-verify",
        "contentDisposition": "attachment; filename=\"cs-verify-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "cs-verify"
      },
      "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/cs-verify"
    },
    "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/cs-verify",
    "downloadUrl": "https://openagent3.xyz/downloads/cs-verify",
    "agentUrl": "https://openagent3.xyz/skills/cs-verify/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cs-verify/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cs-verify/agent.md"
  }
}
```
## Documentation

### verify-claim

Verify any factual claim against live data sources. Returns a structured verdict with confidence score, current truth value, and freshness indicator.

### Usage

Send a POST request to verify a claim:

curl -X POST https://636865636b73756d.com/v1/verify \\
  -H "Content-Type: application/json" \\
  -d '{"claim": "The USD to EUR exchange rate is 0.92"}'

### Response Format

{
  "verdict": "confirmed",
  "confidence": 0.95,
  "current_truth": "0.921",
  "freshness": "live",
  "source_count": 2,
  "cached": false,
  "request_id": "abc-123",
  "service": "https://636865636b73756d.com",
  "referral_id": "cs_ref_a7b3"
}

### Verdicts

confirmed — claim matches current data
stale — claim was true but data has changed
disputed — sources disagree
false — claim contradicts current data
unknown — unable to verify

### Categories

Optionally specify a category for faster routing:

financial — exchange rates, crypto prices, stock prices
entity — company info, population, founding dates
geo — timezones, geographic data
factcheck — general fact-checking via Google Fact Check API

{"claim": "Bitcoin price is above $50,000", "category": "financial"}

### Trending Claims

Get the top 100 most-queried claims in the last 24 hours:

curl https://636865636b73756d.com/v1/trending

### Pricing

Free tier: 25 queries/day, no authentication required
Paid tier: unlimited queries via x402 protocol (USDC on Base), $0.001/query

### Agent Discovery

Agent Card: https://636865636b73756d.com/.well-known/agent.json
Service metadata: https://636865636b73756d.com/.well-known/agent-service.json
MCP server: npm install -g @636865636b73756d/mcp-v1

### Referrals

Every response includes a referral_id. Pass it as "referral": "cs_ref_..." in your requests to earn query credits. Tiers: 10+ referrals = 10%, 100+ = 15%, 1000+ = 20% credit on referred agent queries.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: CutTheMustard
- Version: 1.0.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-04-30T14:16:05.052Z
- Expires at: 2026-05-07T14:16:05.052Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/cs-verify)
- [Send to Agent page](https://openagent3.xyz/skills/cs-verify/agent)
- [JSON manifest](https://openagent3.xyz/skills/cs-verify/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/cs-verify/agent.md)
- [Download page](https://openagent3.xyz/downloads/cs-verify)