# Send Top ClawHub Skills 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": "topclawhubskills",
    "name": "Top ClawHub Skills",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/sdrabent/topclawhubskills",
    "canonicalUrl": "https://clawhub.ai/sdrabent/topclawhubskills",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/topclawhubskills",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=topclawhubskills",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/topclawhubskills"
    },
    "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/topclawhubskills",
    "downloadUrl": "https://openagent3.xyz/downloads/topclawhubskills",
    "agentUrl": "https://openagent3.xyz/skills/topclawhubskills/agent",
    "manifestUrl": "https://openagent3.xyz/skills/topclawhubskills/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/topclawhubskills/agent.md"
  }
}
```
## Documentation

### Top ClawHub Skills

You have access to a live API that provides real-time data about ClawHub skills — downloads, stars, newest additions, and security certification status.

### API Base URL

https://topclawhubskills.com/api

### 1. Top Downloads

GET /api/top-downloads?limit=N

Returns the most downloaded skills, sorted by download count descending. Default limit: 20, max: 100.

### 2. Top Stars

GET /api/top-stars?limit=N

Returns the most starred skills, sorted by star count descending.

### 3. Newest Skills

GET /api/newest?limit=N

Returns the most recently published skills, sorted by creation date descending.

### 4. Security-Certified Skills

GET /api/certified?limit=N

Returns only skills that have passed security screening (not flagged as suspicious and not malware-blocked). Sorted by downloads descending.

### 5. Deleted Skills

GET /api/deleted?limit=N

Returns skills that were previously listed on ClawHub but now return "Skill not found." — preserved for historical reference. Sorted by downloads descending. Each result includes is_deleted: true and a deleted_at timestamp.

### 6. Search

GET /api/search?q=TERM&limit=N

Free-text search across skill slug, display name, summary, and owner handle. The q parameter is required.

### 7. Aggregate Statistics

GET /api/stats

Returns overall platform statistics: total skills, total downloads, total stars, certified skill count, deleted skill count, and the newest skill.

### 8. Health Check

GET /api/health

Returns API uptime and total skill count.

### Response Format

All list endpoints return:

{
  "ok": true,
  "data": [
    {
      "slug": "skill-name",
      "display_name": "Skill Name",
      "summary": "What this skill does...",
      "downloads": 1234,
      "stars": 56,
      "owner_handle": "author",
      "created_at": "2026-01-15T10:30:00.000Z",
      "updated_at": "2026-02-10T14:20:00.000Z",
      "is_certified": true,
      "is_deleted": false,
      "deleted_at": null,
      "clawhub_url": "https://clawhub.ai/skills/skill-name"
    }
  ],
  "total": 20,
  "limit": 20,
  "generated_at": "2026-02-16T12:00:00.000Z"
}

The /api/stats endpoint returns:

{
  "ok": true,
  "data": {
    "total_skills": 850,
    "total_downloads": 2500000,
    "total_stars": 45000,
    "certified_skills": 780,
    "deleted_skills": 186,
    "newest_skill": {
      "slug": "latest-skill",
      "display_name": "Latest Skill",
      "created_at": "2026-02-16T08:00:00.000Z"
    }
  },
  "generated_at": "2026-02-16T12:00:00.000Z"
}

### How to Use

Fetch data from the appropriate endpoint using HTTP GET.
Format results as a clean Markdown table for the user.
Always include ClawHub links so users can install skills directly.

### Formatting Rules

When presenting results to the user:

Downloads: Format large numbers with K/M suffixes (e.g., 1,234 → 1.2K, 1,500,000 → 1.5M)
Stars: Show as-is with a star symbol (e.g., 42)
Certified status: Show Certified for certified skills, leave blank otherwise
Links: Always link to the ClawHub page using the clawhub_url field
Dates: Show as relative time when possible (e.g., "2 days ago", "3 weeks ago")

### Example Table Output

#SkillAuthorDownloadsStarsCertified1Skill Name@author45.2K312Certified2Another Skill@dev38.1K289Certified3Third Skill@creator22.7K156

### Security Messaging

When showing certified skills or when the user asks about security:

All certified skills on ClawHub have been verified through automated security screening that goes beyond standard VirusTotal checks. This multi-layer analysis examines code patterns, network behavior, and permission requests to ensure skills are safe to install.

### Example Queries

"What are the most popular ClawHub skills?" → Use /api/top-downloads
"Show me the newest skills" → Use /api/newest
"Find skills related to git" → Use /api/search?q=git
"Which skills are security-certified?" → Use /api/certified
"How many skills are on ClawHub?" → Use /api/stats
"What are the most loved skills?" → Use /api/top-stars
"Which skills have been removed?" → Use /api/deleted
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sdrabent
- Version: 1.1.0
## 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-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/topclawhubskills)
- [Send to Agent page](https://openagent3.xyz/skills/topclawhubskills/agent)
- [JSON manifest](https://openagent3.xyz/skills/topclawhubskills/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/topclawhubskills/agent.md)
- [Download page](https://openagent3.xyz/downloads/topclawhubskills)