← 返回 Skills 市场
263
总下载
0
收藏
4
当前安装
1
版本数
在 OpenClaw 中安装
/install clawhub-chinese-skills
功能描述
从 ClawHub 最新上传的 skill 中筛选中文用户上传的 skill 并汇报给用户。当用户要求查看最新中文 skill、查看新上传的中文技能、或类似需求时使用。
使用说明 (SKILL.md)
ClawHub 中文 Skill 查询
从 ClawHub 最新上传的 skill 中筛选出中文用户上传的 skill,并汇总链接返回给用户。
When to Use
- 用户要求查看最新上传的中文 skill
- 用户要求监控 ClawHub 新上线的中文技能
- 用户说"查看最新中文 skill"、"筛选中文技能"等
How to Use
执行流程
- 启动浏览器:确保 OpenClaw Browser 已启动,如未启动运行
openclaw browser start - 打开 ClawHub 页面:访问
https://clawhub.ai/skills?sort=newest - 获取页面快照:运行
openclaw browser snapshot获取页面元素 - 分析中文 skill:运行 evaluate 命令提取所有 skill 链接和介绍
- 筛选中文内容:用正则检测标题或介绍中是否包含中文字符
- 格式化输出:将结果以列表形式展示给用户
关键命令
# 1. 启动浏览器
openclaw browser start
# 2. 打开页面
openclaw browser open "https://clawhub.ai/skills?sort=newest"
# 3. 等待加载
sleep 5
# 4. 获取所有 skill 链接和介绍
openclaw browser evaluate --fn "() => {
const links = document.querySelectorAll('a[href^=\"/\"]');
const results = [];
links.forEach(link => {
const href = link.getAttribute('href');
if (href && href.match(/^\\/[a-zA-Z0-9_-]+\\/[a-zA-Z0-9_-]+$/)) {
const text = link.innerText.trim();
if (text) {
results.push({href, text: text.substring(0, 200)});
}
}
});
return JSON.stringify(results.slice(0, 60), null, 2);
}"
# 5. 筛选中文(检测 \\u4e00-\\u9fff 范围的中文字符)
筛选规则
判断是否为中文 skill 的方法:检查 skill 的标题或介绍中是否包含中文字符(Unicode 范围 \u4e00-\u9fff)。
输出格式
📋 最新中文 Skill 汇总(共 X 个)
1. **Skill 名称** - 简要描述
- 链接
2. ...
定时任务(可选)
如果用户要求每日定时汇报,创建一个 cron 定时任务:
# 每天早上 9 点执行
openclaw cron add --schedule "cron 0 9 * * *" --sessionTarget isolated
注意:
- 使用
delivery.mode="announce"将结果推送到用户当前频道 - 投递对象填写当前用户的标识(根据当前会话的 channel 类型确定)
创建后检查步骤(重要)
创建完定时任务后,必须执行以下检查:
-
查看已创建的定时任务:
openclaw cron list -
检查投递目标是否正确:
- 确认
delivery.channel或delivery.to是否填写了当前对话用户的 ID/标识 - 确认投递目标是用户当前使用的频道(webchat、telegram、discord 等)
- 确认
-
如果投递目标不正确:
- 使用
openclaw cron update \x3CjobId>更新投递配置 - 或者删除后重新创建:
openclaw cron remove \x3CjobId>然后重新创建
- 使用
-
验证:
- 手动触发一次测试:
openclaw cron run \x3CjobId> - 确认结果能正确投递到用户当前会话的频道
- 手动触发一次测试:
当前会话信息(参考)
在创建定时任务时,需要根据当前会话的 metadata 确定投递目标:
channel: 当前消息的通道类型(如 webchat、telegram 等)provider: 消息提供者surface: 消息表面类型
这些信息会随消息一起发送,可用于配置定时任务的投递目标。
Edge Cases
- 页面加载失败:检查网络连接,重试打开页面
- 未找到中文 skill:返回"未在当前页面找到中文 skill,请稍后重试"
- 页面需要滚动加载:使用
openclaw browser evaluate检查是否有更多内容,必要时滚动页面
安全使用建议
This skill looks coherent and low-risk, but before installing: (1) confirm your OpenClaw version meets the declared requirement; (2) verify you are comfortable allowing the agent to start the OpenClaw browser and run CLI commands; (3) if you enable the optional cron, carefully check the delivery.target/channel and test the job to ensure outputs go only to the intended user/channel (avoid announce mode or incorrect IDs if you don't want cross-channel posts); (4) run a one-time manual invocation first to confirm results and formatting; and (5) since this is instruction-only and uses session metadata, ensure your session metadata does not expose other users' IDs you don't want published.
功能分析
Type: OpenClaw Skill
Name: clawhub-chinese-skills
Version: 1.0.0
The skill bundle is designed to scrape and filter Chinese-language skills from the ClawHub website using the OpenClaw browser and cron tools. The instructions in SKILL.md follow a logical workflow for data extraction and reporting, and the use of scheduled tasks (cron) is consistent with the stated purpose of providing daily updates to the user. No evidence of data exfiltration, malicious execution, or unauthorized persistence was found.
能力评估
Purpose & Capability
Name/description match the runtime instructions: all actions are calls to the OpenClaw CLI/browser (openclaw browser open/evaluate, cron commands) and the SKILL.md also declares openclaw >=0.15. There are no unrelated credentials, binaries, or install steps.
Instruction Scope
Instructions are narrowly scoped to loading the ClawHub newest page, extracting links/text, and detecting Chinese characters via Unicode range. They also include optional steps to create periodic cron jobs and to use session metadata as delivery targets — that introduces workflow/operational steps (delivery configuration) that should be validated before enabling automation.
Install Mechanism
No install spec and no code files — this is instruction-only. That minimizes risk from downloaded or executed third-party code.
Credentials
The skill requires no environment variables or credentials. It relies on platform-provided session metadata and the OpenClaw CLI, which is appropriate for the described tasks.
Persistence & Privilege
always:false (default) and autonomous invocation is allowed (platform default). The only persistence risk comes from creating cron jobs that will later deliver messages; ensure delivery targets and permissions are correct because cron jobs persist and can post to channels if misconfigured.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install clawhub-chinese-skills - 安装完成后,直接呼叫该 Skill 的名称或使用
/clawhub-chinese-skills触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
首次发布:从 ClawHub 最新上传的 skill 中筛选中文用户上传的 skill
元数据
常见问题
ClawHub 中文 Skill 查询 是什么?
从 ClawHub 最新上传的 skill 中筛选中文用户上传的 skill 并汇报给用户。当用户要求查看最新中文 skill、查看新上传的中文技能、或类似需求时使用。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 263 次。
如何安装 ClawHub 中文 Skill 查询?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawhub-chinese-skills」即可一键安装,无需额外配置。
ClawHub 中文 Skill 查询 是免费的吗?
是的,ClawHub 中文 Skill 查询 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
ClawHub 中文 Skill 查询 支持哪些平台?
ClawHub 中文 Skill 查询 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 ClawHub 中文 Skill 查询?
由 n0nsense(@n0nsense11)开发并维护,当前版本 v1.0.0。
推荐 Skills