skill-hunter

TotalClaw 作者 totalclaw

查找、评估和安装 ClawHub 技能。对 10,000 多种技能进行语义搜索,安装前进行安全审查,并排比较。使技能变得有用的技能。

安装 / 下载方式

TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~kenoodl-synthesis-skill-hunter
cURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~kenoodl-synthesis-skill-hunter/file -o kenoodl-synthesis-skill-hunter.md
# Skill Hunter

10,000+ skills on ClawHub. No good way to find the right one, vet it, or know if it's safe to install. Skill Hunter fixes that.

## Three modes

**Hunt** — You know what you need. Describe it in plain English. Skill Hunter searches ClawHub's semantic index and returns ranked matches.

```
curl -s "https://clawhub.ai/api/v1/search?q=code+review+security" | jq '.[] | {slug, displayName, summary, score}'
```

**Scout** — You're exploring. Browse trending, newest, or most-downloaded skills across the platform.

```
curl -s "https://clawhub.ai/api/v1/skills?sort=trending&limit=10" | jq '.items[] | {slug, displayName, summary}'
```

**Vet** — You found a skill. Before installing, read its SKILL.md remotely, check its security profile, and understand what it will do on your machine.

```
curl -s "https://clawhub.ai/api/v1/skills/kenoodl-synthesis/kenoodl-synthesis/file?path=SKILL.md"
```

Full workflow, API reference, and security evaluation framework in `instructions.md`.

## Security profile

No credentials required. No env vars. No external packages. All API calls go to clawhub.ai — the platform's own public endpoints. Nothing leaves your environment except search queries to ClawHub.

---

## 中文说明

# Skill Hunter

ClawHub 上有 10,000 多个技能。却没有好办法找到合适的那一个、对它进行审查,或者判断它是否可以安全安装。Skill Hunter 解决了这个问题。

## 三种模式

**Hunt(搜寻)** —— 你知道自己需要什么。用平实的英语描述它。Skill Hunter 会搜索 ClawHub 的语义索引,并返回经过排名的匹配结果。

```
curl -s "https://clawhub.ai/api/v1/search?q=code+review+security" | jq '.[] | {slug, displayName, summary, score}'
```

**Scout(探索)** —— 你正在探索。浏览平台上的热门、最新或下载量最高的技能。

```
curl -s "https://clawhub.ai/api/v1/skills?sort=trending&limit=10" | jq '.items[] | {slug, displayName, summary}'
```

**Vet(审查)** —— 你找到了一个技能。在安装之前,远程读取它的 SKILL.md、检查它的安全概况,并了解它将在你的机器上做什么。

```
curl -s "https://clawhub.ai/api/v1/skills/kenoodl-synthesis/kenoodl-synthesis/file?path=SKILL.md"
```

完整的工作流、API 参考和安全评估框架见 `instructions.md`。

## 安全概况

无需凭据。无环境变量。无外部依赖包。所有 API 调用都指向 clawhub.ai —— 平台自身的公共端点。除了发往 ClawHub 的搜索查询外,没有任何内容离开你的环境。