Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

topclawhubskills技能安全扫描

Agent Skill

topclawhubskills 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

48,130

周安装

1,947

GitHub Stars

2

下载量

15,109
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:topclawhubskills(技能安全扫描)
来源仓库:https://github.com/sdrabent/topclawhubskills
安装命令:
openclaw skills install topclawhubskills
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install topclawhubskills

简介

实时发现流行、最新且安全认证的 ClawHub 技能库。

  • 适用于技能选型、功能对比和生态扩展决策支持场景。topclawhubskills 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 API 数据聚合展示热度、更新频率和安全评级指标。
  • 需人工核验实际功能与描述一致性,避免仅凭排名做出误判。
  • 建议结合具体任务需求评估,而非单纯追求流行度指标。

SKILL.md

name
topclawhubskills
display_name
Top ClawHub Skills
description
Discover the most popular, newest, and security-certified ClawHub skills via live API data.
emoji
\F4CA
os

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

Available Endpoints

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

  1. Fetch data from the appropriate endpoint using HTTP GET.
  2. Format results as a clean Markdown table for the user.
  3. 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

#SkillAuthorDownloadsStarsCertified
1Skill Name@author45.2K312Certified
2Another Skill@dev38.1K289Certified
3Third 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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.48%
按下载量换算13,520

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills