← 返回
未分类 中文

Skill Publish

Publish an OpenClaw skill to ClawHub with release checks, version metadata, and command generation. Use when you need to prepare a skill for first publicatio...
将 OpenClaw 技能发布到 ClawHub,包含发布检查、版本元数据和命令生成。适用于首次发布技能...
fwwdn fwwdn 来源
未分类 clawhub v0.1.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 388
下载
💾 0
安装
1
版本
#latest

概述

Clawhub Publish

Prepare a skill for ClawHub release, generate the publish command, and verify the release inputs before anything is uploaded.

Quick Start

  1. Point this skill at the target skill folder.
  2. Run the release checker to catch obvious metadata and packaging issues.
  3. Fill in slug, display name, version, changelog, and tags.
  4. Review the generated clawhub publish command before running it.
  5. Fix any public-facing language, personal path, or placeholder issues before release.

Prerequisites

  • python3 available for the local checker script.
  • clawhub CLI installed.
  • Authentication established with clawhub login or clawhub login --token before actual publish.
  • A target skill folder with a valid SKILL.md.

Example Prompts

  • Prepare this skill for first publish to ClawHub and generate the exact publish command.
  • Check whether this skill is safe to publish, then draft the clawhub publish command for version 1.2.0.
  • I need to release a new ClawHub version of this skill. Validate the metadata and show me what to run.
  • Audit this skill's release inputs before I publish it to ClawHub.

When to Use This Skill

Use this skill when the goal is to publish or update a skill on ClawHub with fewer release mistakes.

Typical use cases:

  • First-time publication of a new skill
  • Publishing a new semver version of an existing skill
  • Validating slug, name, version, changelog, and tags before release
  • Checking whether a local skill package looks publishable

When Not to Use

Do not use this skill for tasks that are primarily about skill quality or listing optimization.

Use a different workflow when you need to:

  • Improve search visibility or listing copy: use skill-seo
  • Evaluate quality, regressions, or trigger accuracy: use skill-test
  • Create a new skill from scratch: use skill-creator
  • Debug runtime issues inside the target skill itself

If Publishing Is Inconclusive

If the local checks are clean but release confidence is still low, say what remains unverified.

Common next steps:

  • Confirm clawhub whoami before publishing
  • Run skill-test for quality concerns
  • Run skill-seo for discoverability concerns
  • Compare the target skill against the currently published version if this is an update

Pre-Publish Checklist

Before publishing, confirm all of the following:

  • SKILL.md has valid frontmatter and no obvious placeholders
  • Public-facing copy matches the intended audience language
  • No personal file paths, usernames, or internal-only identifiers leak into the package
  • Slug, display name, version, changelog, and tags are ready
  • Any remaining release risk has been explained to the user

Versioning Guide

Use semantic versioning deliberately:

Change typeSuggested version
------
First publish1.0.0
Small wording or typo fix1.0.1
Content improvement or meaningful documentation update1.1.0
Major workflow or structure rewrite2.0.0

If the user already has a versioning policy, follow it instead of this default table.

Workflow

  1. Read the target skill's SKILL.md and inspect the directory contents.
  2. Run the local checker:

```sh

python3 {baseDir}/scripts/check_publish_ready.py /path/to/skill

```

  1. Collect release inputs:
    • slug
    • display name
    • version
    • changelog
    • tags
  2. Re-run the checker with release inputs to generate the exact publish command.
  3. Present the command and any warnings to the user for confirmation.
  4. If the user wants execution, run the generated clawhub publish ... command.
  5. After publishing, verify the result with clawhub search "" or by opening the ClawHub page.

Batch Publish

When publishing multiple skills:

  1. Run the local checker for each skill independently.
  2. Review slug, version, and changelog for each release.
  3. Publish one skill at a time so failures stay attributable.
  4. Verify each published slug before moving to the next one.

Commands

# Baseline release audit
python3 {baseDir}/scripts/check_publish_ready.py /path/to/skill

# Release audit plus publish command preview
python3 {baseDir}/scripts/check_publish_ready.py /path/to/skill \
  --slug my-skill \
  --display-name "My Skill" \
  --version 1.0.0 \
  --changelog "Initial release" \
  --tags latest

# Actual publish command after review
clawhub publish /path/to/skill --slug my-skill --name "My Skill" --version 1.0.0 --changelog "Initial release" --tags latest

Definition of Done

  • The local checker has run against the target skill.
  • Required release inputs have been validated or explicitly flagged as missing.
  • A concrete clawhub publish ... command has been prepared.
  • Any publish blockers or warnings have been explained to the user.
  • If a publish was requested, the post-publish verification step has been completed.

Assistant Responsibilities

  • Distinguish publish blockers from optional improvements.
  • Do not run clawhub publish until the user confirms the release inputs.
  • Be explicit about what was verified locally versus what still depends on ClawHub or authentication.
  • Preserve the target skill's actual metadata unless the user asks for edits.

Notes and Constraints

  • Local checks cannot guarantee that ClawHub authentication is valid unless the publish command is actually run.
  • This skill helps generate and review the release command; it should not silently publish.
  • slug should usually match the local directory name unless the user has a clear migration reason.
  • Treat version bumps as intentional release actions, not automatic fixes.
  • Publishing a technically valid skill is not the same as publishing a good skill; use skill-test and skill-seo if quality or discoverability is still in doubt.

Common Errors

  • clawhub CLI missing: install it before attempting publish
  • not logged in: run clawhub login, or use clawhub login --token , then confirm with clawhub whoami
  • slug rejected or already taken: choose a more specific slug
  • invalid semver: correct the version before generating the final command

Resources

版本历史

共 1 个版本

  • v0.1.0 当前
    2026-03-31 03:52 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Skill Creator

fwwdn
通过引导式分步协助从零开始创建新的代理技能。生成包含前置信息、工作流、示例和代码的完整SKILL.md包。
★ 0 📥 546
dev-programming

Mcporter

steipete
使用 mcporter CLI 直接列出、配置、认证及调用 MCP 服务器/工具(支持 HTTP 或 stdio),涵盖临时服务器、配置编辑及 CLI/类型生成功能。
★ 195 📥 67,800
dev-programming

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 679 📥 328,417