Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

skills-publish技能发布

Agent Skill

skills-publish 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,357

周安装

178

GitHub Stars

公开资料未说明

下载量

1,410
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skills-publish

简介

用于将 OpenClaw 技能发布到 ClawHub,包含检查与元数据生成。

  • 适合在 OpenClaw 中准备首次发布或版本更新时使用。
  • 可自动生成发布命令和合规性报告,简化流程。
  • 安装前需确保技能已通过基本测试。
  • 建议遵循官方指南完成最终审核。skills-publish 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
clawhub-publish
description
Publish an OpenClaw skill to ClawHub with release checks, version metadata, and command generation. Use when you need to prepare a skill for first publication, publish a new version, validate slug, name, and semver inputs, or generate the exact clawhub publish command before release.
metadata
{ "openclaw": { "emoji": "🚀", "requires": { "bins": ["python3", "clawhub"] } } }

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 <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:
   python3 {baseDir}/scripts/check_publish_ready.py /path/to/skill
  1. Collect release inputs:

- slug - display name - version - changelog - tags

  1. Re-run the checker with release inputs to generate the exact publish command.
  2. Present the command and any warnings to the user for confirmation.
  3. If the user wants execution, run the generated clawhub publish ... command.
  4. After publishing, verify the result with clawhub search "<slug>" 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 <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

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.42%
按下载量换算1,345

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills