Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计提醒

xingke-clawhub-publishxingke ClawHub publish 效率

Agent Skill

xingke-clawhub-publish 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,350

周安装

96

GitHub Stars

公开资料未说明

下载量

760
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install xingke-clawhub-publish

简介

xingke ClawHub publish 用于技能发布与版本管理,适合开发者分发工具包。

  • 支持一键推送新版本至 ClawHub 市场,简化技能迭代流程。
  • 自动校验元数据与依赖关系,确保发布包完整性。
  • 安装命令:openclaw skills install xingke-clawhub-publish,需仓库写权限。
  • 发布前应完成安全审计与兼容性测试,避免破坏现有用户环境。

SKILL.md

name
clawhub-publish
description
|

ClawhHub Skill Publisher

You help users publish (or update) a skill on ClawhHub using the clawhub publish CLI.

Workflow (follow in order)

Step 1 — Identify the skill folder

Check if the user already specified a path or skill name. If not, list available skills:

ls ~/.claude/skills/

If there's only one skill, use it directly. If there are multiple, ask the user which one to publish.

The skill folder path is typically ~/.claude/skills/<slug>/.

Step 2 — Read the skill's metadata

Read SKILL.md from the skill folder to extract:

  • name field from frontmatter → use as --name
  • The slug is the folder name (unless the user says otherwise)

Also check if there's a version field in the frontmatter (some skills track it there).

Step 3 — Check current published version

Run:

clawhub inspect <slug> 2>&1

Look for the Latest: line (e.g. Latest: 1.0.2). If the skill has never been published, start at 1.0.0.

If clawhub inspect returns an error like "not found", treat current version as 0.0.0 and suggest 1.0.0 as the first release.

Step 4 — Suggest a version bump

Show the user the current version and suggest the next patch version by default (most releases are patches). Also offer minor and major:

当前版本:1.0.2
建议版本:
  1. 1.0.3(patch — 修复bug、优化提示词)← 推荐
  2. 1.1.0(minor — 新增功能或较大改动)
  3. 2.0.0(major — 破坏性变更或完全重写)

请选择版本号,或直接输入自定义版本:

Wait for the user to confirm or specify a version.

Step 5 — Get changelog

Ask what changed in this version:

这次版本更新了什么?(将作为 changelog 写入发布记录)

Keep it brief — one sentence is fine. If the user says "skip" or similar, use a generic message like "Minor updates".

Step 6 — Confirm and publish

Show a summary before running:

📦 即将发布:
  Skill:<folder-path>
  Slug:<slug>
  名称:<name>
  版本:<version>
  Changelog:<changelog>
  Tags:latest

确认发布吗?

After confirmation, run:

clawhub publish <folder-path> \
  --slug <slug> \
  --name "<name>" \
  --version <version> \
  --changelog "<changelog>" \
  --tags latest

Step 7 — Report result

On success, the output contains: ✔ OK. Published <slug>@<version> (<id>)

Report back clearly:

✅ 发布成功!
  <slug>@<version>
  ID:<id>

If it fails, show the error message and suggest common fixes:

  • Version already exists → bump the version
  • Not logged in → run clawhub login
  • Slug mismatch → verify the slug matches what was previously published

Optional: Update version in SKILL.md

After a successful publish, offer to update the version field in SKILL.md frontmatter (so future publishes can auto-detect it):

是否将版本号 <version> 写入 SKILL.md frontmatter?(方便下次自动识别当前版本)

If the user agrees, add or update version: <version> in the YAML frontmatter of SKILL.md.

Key CLI reference

clawhub publish <path>
  --slug <slug>        # Unique skill identifier (required)
  --name <name>        # Display name shown on clawhub.com
  --version <version>  # Semver (required, must be higher than current)
  --changelog <text>   # Release notes for this version
  --tags <tags>        # Comma-separated, default "latest"

clawhub whoami         # Show logged-in user
clawhub inspect <slug> # Show published skill info including latest version
clawhub sync           # Auto-scan and publish all local skills with changes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.68%
按下载量换算628

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills