Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

skill-multi-publisher技能多发布者

Agent Skill

skill-multi-publisher 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 OpenClaw 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,440

周安装

435

GitHub Stars

公开资料未说明

下载量

3,480
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-multi-publisher

简介

skill-multi-publisher 用于一键发布技能到多个主流市场平台。

  • 适合同时部署到 GitHub、ClawHub 及社区市场等渠道。
  • 简化发布流程并支持 npx 技能打包格式兼容。
  • 需配置各平台 API 密钥并遵守分发协议条款。
  • 建议先在测试环境验证发布流程稳定性。skill-multi-publisher 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
skill-multi-publisher
version
2.0.0
description
|
tags
["skill", "publish", "github", "clawhub", "marketplace", "automation"]
metadata
{"openclaw":{"emoji":"🚀"}}

Skill Multi-Publisher

Publish a skill to ALL major marketplaces with one command.

When to use

When the user says:

  • "Publish this skill" / "发布这个skill"
  • "Push skill to all marketplaces" / "发布到所有平台"
  • "Release this skill everywhere"
  • "Submit to awesome-claude-skills"

Prerequisites

  • gh CLI installed and logged in (gh auth status)
  • clawhub CLI available and logged in (clawhub whoami)
  • Skill directory with valid SKILL.md containing YAML frontmatter (name + description)

All Supported Platforms

PlatformStarsMethodInstall Command
GitHub (npx skills)-gh repo create + pushnpx skills add user/repo
ClawHub-clawhub publishclawhub install slug
composiohq/awesome-claude-skills41K+Fork + PR/plugin install
anthropics/skills86K+Fork + PR/plugin install
daymade/claude-code-skills600+Fork + PR/plugin install
obra/superpowers-marketplace595Fork + PR/plugin install
anthropics/claude-plugins-official9.3KForm submission/plugin install
trailofbits/skills-curated252Fork + PR/plugin install
MadAppGang/claude-code242Fork + PR/plugin install

Publish Flow

Phase 1: Direct Publish (automated)

Step 1: Validate

head -10 SKILL.md

Required format:

---
name: my-skill-name
version: 1.0.0
description: |
  What this skill does. At least 50 characters.
tags: ["tag1", "tag2"]
---

Step 2: Auto-generate missing files

If missing, create:

  • LICENSE (MIT, current year, git user.name)
  • README.md (from SKILL.md content, bilingual CN/EN if user is Chinese-speaking)

Step 3: Publish to GitHub

cd <skill_dir>
git init
git add -A
git commit -m "Release: <skill-name> v<version>"
gh repo create <user>/<skill-name> --public --description "<desc>" --source . --push

Step 4: Publish to ClawHub

clawhub publish <skill_dir> \
  --slug <skill-name> \
  --name "<Display Name>" \
  --version <version> \
  --tags "<comma-separated-tags>" \
  --changelog "<changelog text>"

Phase 2: Community Marketplaces (PR submission)

Step 5: Submit to composiohq/awesome-claude-skills (41K stars)

This is the largest skill directory. Submit via PR:

# Fork the repo
gh repo fork composiohq/awesome-claude-skills --clone=false

# Clone your fork
gh repo clone <user>/awesome-claude-skills /tmp/awesome-claude-skills
cd /tmp/awesome-claude-skills

# Create branch
git checkout -b add-<skill-name>

# Copy skill folder (only SKILL.md needed)
mkdir <skill-name>
cp <skill_dir>/SKILL.md <skill-name>/SKILL.md

# Commit and push
git add -A
git commit -m "Add <skill-name>: <short description>"
git push origin add-<skill-name>

# Create PR
gh pr create \
  --repo composiohq/awesome-claude-skills \
  --title "Add <skill-name>" \
  --body "$(cat <<'EOF'
## New Skill: <skill-name>

<description>

### What it does
<bullet points>

### Install
- npx skills add <user>/<skill-name>
- clawhub install <skill-name>

### Tested on
- Claude Code CLI
- OpenClaw
EOF
)"

Step 6: Submit to anthropics/skills (86K stars)

Official Anthropic skill repo:

gh repo fork anthropics/skills --clone=false
gh repo clone <user>/skills /tmp/anthropics-skills
cd /tmp/anthropics-skills

git checkout -b add-<skill-name>
mkdir -p skills/<skill-name>
cp <skill_dir>/SKILL.md skills/<skill-name>/SKILL.md
# Copy scripts if any
cp -r <skill_dir>/tools skills/<skill-name>/tools 2>/dev/null || true
cp -r <skill_dir>/scripts skills/<skill-name>/scripts 2>/dev/null || true

git add -A
git commit -m "Add <skill-name> skill"
git push origin add-<skill-name>

gh pr create \
  --repo anthropics/skills \
  --title "Add <skill-name> skill" \
  --body "$(cat <<'EOF'
## Summary
<description>

## Skill Structure
- SKILL.md with frontmatter (name, description, tags)
- tools/ or scripts/ directory

## Testing
Tested in Claude Code CLI.
EOF
)"

Step 7: Submit to daymade/claude-code-skills (623 stars, Chinese community)

gh repo fork daymade/claude-code-skills --clone=false
gh repo clone <user>/claude-code-skills /tmp/daymade-skills
cd /tmp/daymade-skills

git checkout -b add-<skill-name>
mkdir <skill-name>
cp <skill_dir>/SKILL.md <skill-name>/SKILL.md
cp -r <skill_dir>/scripts <skill-name>/scripts 2>/dev/null || true
cp -r <skill_dir>/tools <skill-name>/tools 2>/dev/null || true
cp -r <skill_dir>/references <skill-name>/references 2>/dev/null || true

git add -A
git commit -m "Add <skill-name>"
git push origin add-<skill-name>

gh pr create \
  --repo daymade/claude-code-skills \
  --title "Add <skill-name>" \
  --body "$(cat <<'EOF'
## New Skill: <skill-name>

<description>

### Structure
- SKILL.md (with YAML frontmatter)
- tools/ or scripts/

### Also available at
- npx skills add <user>/<skill-name>
- clawhub install <skill-name>
EOF
)"

Step 8: Submit to obra/superpowers-marketplace (595 stars)

gh repo fork obra/superpowers-marketplace --clone=false
gh repo clone <user>/superpowers-marketplace /tmp/superpowers
cd /tmp/superpowers

git checkout -b add-<skill-name>
mkdir -p plugins/<skill-name>/skills/<skill-name>
cp <skill_dir>/SKILL.md plugins/<skill-name>/skills/<skill-name>/SKILL.md

# Create plugin.json
cat > plugins/<skill-name>/.claude-plugin/plugin.json <<PJSON
{
  "name": "<skill-name>",
  "description": "<description>",
  "version": "<version>"
}
PJSON

git add -A
git commit -m "Add <skill-name> plugin"
git push origin add-<skill-name>

gh pr create \
  --repo obra/superpowers-marketplace \
  --title "Add <skill-name>" \
  --body "<description>"

Step 9 (Optional): Submit to anthropics/claude-plugins-official

For high-quality plugins only. Submit via official form:

  • URL: https://clau.de/plugin-directory-submission
  • Requires review by Anthropic team
  • Best for mature, well-tested plugins

Phase 3: Report

After all submissions, show summary:

Published <skill-name> v<version>:

Direct publish:
  ✅ GitHub:   https://github.com/<user>/<skill-name>
  ✅ ClawHub:  clawhub install <skill-name>
  ✅ Install:  npx skills add <user>/<skill-name>

PR submitted:
  🔄 composiohq/awesome-claude-skills (41K stars) - PR #xxx
  🔄 anthropics/skills (86K stars) - PR #xxx
  🔄 daymade/claude-code-skills (623 stars) - PR #xxx
  🔄 obra/superpowers-marketplace (595 stars) - PR #xxx

Manual:
  📋 anthropics/claude-plugins-official - submit at clau.de/plugin-directory-submission

Update Flow

For already-published skills:

# GitHub: commit + push
cd <skill_dir> && git add -A && git commit -m "Update: <changelog>" && git push

# ClawHub: re-publish with bumped version
clawhub publish <skill_dir> --slug <name> --version <new_version> --changelog "<text>"

# Community PRs: update existing PR or create new one

Publishing Checklist

  • [ ] SKILL.md has YAML frontmatter (name, version, description)
  • [ ] description is at least 50 characters
  • [ ] No secrets (.env, credentials) in the directory
  • [ ] README.md exists with install instructions
  • [ ] LICENSE exists
  • [ ] All scripts are executable (chmod +x)

Example prompts

  • "Publish this skill to all platforms"
  • "发布skill到所有市场"
  • "Submit to awesome-claude-skills"
  • "Release v2.0.0 everywhere"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.85%
按下载量换算2,500

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills