with one click
find-skills
搜索和安装技能。当用户问"有没有 X 的 skill"、"搜索 skill"、"安装 skill"时使用。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
搜索和安装技能。当用户问"有没有 X 的 skill"、"搜索 skill"、"安装 skill"时使用。
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Planner-Generator-Evaluator 编排模式。GAN 启发的多 agent 动态编排,通过 ai CLI 控制子 agent 完成复杂任务的拆解-执行-验证闭环。
Code review skill using codex-rs methodology with ai CLI
为任意代码仓库构建结构化知识库(code wiki),并通过 frozen snapshot 机制启动即问即答的 expert agent。 当你需要深入理解一个大型代码仓库、构建可复用的代码知识库、或为其他 agent 提供代码专家服务时使用此技能。
Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.
Orchestrate a real-time alternating debate between two subagents using ai serve/send. Judge controls rounds by prompting each agent in turn.
任务规划与进度追踪。当任务有 5+ 步骤、多文件改动、或长执行链时使用。 核心机制:用 checkbox 列表追踪进度,每完成一步立即更新,利用"重写列表"将完整任务清单重新注入 context。
| name | find-skills |
| description | 搜索和安装技能。当用户问"有没有 X 的 skill"、"搜索 skill"、"安装 skill"时使用。 |
| version | 2.0.0 |
| author | Ducc |
| metadata | {"openclaw":{"emoji":"🔍","always":false}} |
从 ClawHub 技能市场搜索和安装技能。
直接跟 Agent 说:
"有没有 GitHub 操作的 skill?"
"搜索网页抓取相关的 skill"
"安装 crawl4ai skill"
使用 ClawHub API 搜索:
# 搜索 GitHub 相关技能
curl -s "https://clawhub.ai/api/v1/search?q=github&limit=5" | jq .
返回结果包含:
slug - 技能唯一标识displayName - 显示名称summary - 描述version - 版本号score - 相关度评分找到想要的技能后,下载并解压:
# 下载技能 ZIP
curl -L -o /tmp/skill.zip "https://clawhub.ai/api/v1/download?slug=<slug>"
# 解压到技能目录
unzip -o /tmp/skill.zip -d ~/.aiclaw/skills/<slug>
# 刷新技能列表
/skills reload
用户: 有没有可以帮我操作 GitHub PR 的 skill?
Agent: [搜索 ClawHub]
找到了 3 个相关技能:
1. **github** v1.2.0 (评分: 0.95)
GitHub PR/Issue/Branch 操作
2. **github-actions** v0.8.0 (评分: 0.72)
CI/CD 工作流管理
要安装哪个?
用户: 安装 github
Agent: [下载并安装]
正在安装 github 技能...
✓ 已安装到 ~/.aiclaw/skills/github
执行 /skills reload 加载新技能...
用户: /skills reload
Agent: Reloaded 15 skills
~/.aiclaw/skills/ - 用户安装的技能| 命令 | 说明 |
|---|---|
/skills | 列出已加载的技能 |
/skills list | 同上 |
/skills reload | 热加载新安装的技能 |
从 Git 仓库安装:
git clone https://github.com/user/skill-repo ~/.aiclaw/skills/skill-name
/skills reload
参考 skill-creator 技能了解如何创建自己的技能。