Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Discover the most popular, newest, and security-certified ClawHub skills via live API data.
Discover the most popular, newest, and security-certified ClawHub skills via live API data.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
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.
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.
You have access to a live API that provides real-time data about ClawHub skills โ downloads, stars, newest additions, and security certification status.
https://topclawhubskills.com/api
GET /api/top-downloads?limit=N Returns the most downloaded skills, sorted by download count descending. Default limit: 20, max: 100.
GET /api/top-stars?limit=N Returns the most starred skills, sorted by star count descending.
GET /api/newest?limit=N Returns the most recently published skills, sorted by creation date descending.
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.
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.
GET /api/search?q=TERM&limit=N Free-text search across skill slug, display name, summary, and owner handle. The q parameter is required.
GET /api/stats Returns overall platform statistics: total skills, total downloads, total stars, certified skill count, deleted skill count, and the newest skill.
GET /api/health Returns API uptime and total skill count.
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" }
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.
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")
#SkillAuthorDownloadsStarsCertified1Skill Name@author45.2K312Certified2Another Skill@dev38.1K289Certified3Third Skill@creator22.7K156
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.
"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
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.