← 返回 Skills 市场
zjsxply

Skill Market Publisher

作者 Linyue Pan · GitHub ↗ · v0.1.0 · MIT-0
cross-platform ⚠ pending
9
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install skill-market-publisher
功能描述
Publish, submit, and verify local skills across public skill marketplaces, directories, and registries. Use when an agent needs to take a skill folder or ski...
使用说明 (SKILL.md)

Skill Market Publisher

Overview

Use this skill to turn one local skill folder into a reusable market release plan. Keep the skill itself timeless: document current submission surfaces, verification patterns, and adapter logic, but keep one-off submission IDs, sample URLs, and dated field logs outside the reusable skill folder.

Quick Start

  1. Re-check live market surfaces before making claims about support:
python3 scripts/skill_market_publish.py recon
  1. Inspect one skill and build a market readiness plan:
python3 scripts/skill_market_publish.py plan /abs/path/to/skill \
  --repo-url https://github.com/owner/repo \
  --git-ref main \
  --tag automation \
  --tag research
  1. Generate a review bundle before any live submission:
python3 scripts/skill_market_publish.py bundle /abs/path/to/skill \
  --repo-url https://github.com/owner/repo \
  --git-ref main \
  --author-email [email protected] \
  --version 0.1.0 \
  --skillz-category automation \
  --bogen-category development \
  --a2a-category research \
  --a2a-price 9.0 \
  --a2a-seller 0xYourWalletAddress \
  --out-dir /tmp/skill-market-bundle
  1. Publish one wrapped live target at a time. Live submission requires --execute.
python3 scripts/skill_market_publish.py publish agentskill-sh /abs/path/to/skill \
  --repo-url https://github.com/owner/repo \
  --execute
  1. Verify the result using the market-specific checks in references/verification-playbook.md.

  2. When a market still needs browser-side login or form interaction, open the tracked submit pages and use the printed checklist:

python3 scripts/open_manual_submit_pages.py \
  --repo-url https://github.com/owner/repo \
  --git-ref main \
  --skill-path /abs/path/to/skill-a \
  --skill-path /abs/path/to/skill-b

Workflow

1. Normalize the Release Unit

Treat the publishable unit as one skill folder containing SKILL.md.

  • If the repository contains many skills, publish each skill separately.
  • If the repository is a pack, split markets into:
    • pack importers that should ingest the public repo once
    • per-skill submitters that should receive a folder URL or raw SKILL.md content
  • If a market works at repository scope, make sure the chosen public repository layout matches that market before submitting.

2. Detect Repository Layout

Run inspect or plan first. The bundled CLI classifies the current repository as:

  • single-skill-repo
  • root-pack
  • skills-subdir-pack
  • nested-skill-dir
  • standalone-skill-dir

Some markets accept any repository URL. Others currently prefer a repository with a top-level skills/ directory. When layout and market expectations conflict, create a mirror or release repository instead of reshaping the source repository for one listing.

Treat submit-page copy as a hint, not proof. Some live backends accept root-pack repositories even when the visible page copy talks about a repo-root skills/ directory. Verify layout assumptions from the live preview, submit response, or public read API before forcing a mirror.

3. Choose the Market Mode

Use automated publishing only for targets that are currently verified in references/market-matrix.md.

Current modes:

  • auto-cli: official CLI publishing wrapped by this skill
  • auto-http: stable HTTP form or API submission wrapped by this skill
  • manual-web: browser submission workflow with no stable documented endpoint in this skill
  • index-only: discovery depends on installability, GitHub App ingestion, or passive indexing rather than explicit submission
  • incompatible: expects a different artifact format than a plain skill folder
  • needs-recon: public site exists, but the current publish path is not verified

Some markets also expose official CLI or seller dashboards that this skill records but does not proxy. Treat those as documented manual flows unless the bundled CLI explicitly supports them.

4. Prepare Market Inputs

Provide explicit values for market-only fields instead of guessing.

  • Use --version for ClawHub publishing.
  • When a market asks for a username-like author or submitter field, prefer the GitHub owner handle from --repo-url. Override --author-name only when you need a different public identity.
  • Use --author-email and --skillz-category for Skillz Directory.
  • Map domain-specific categories onto the market's real enum. If the market does not expose research, browser, or another domain label you want, choose the closest supported value or other instead of inventing one.
  • Use --a2a-price, --a2a-category, and --a2a-seller for A2A Market.
  • Use --git-ref when the bundle should include stable GitHub blob and raw SKILL.md URLs, or when a market benefits from a folder-scoped GitHub tree URL.
  • When a market accepts a GitHub URL, decide deliberately between:
    • repository URL
    • repo-root pack URL
    • folder tree/\x3Cref>/\x3Cpath> URL

Accepted input alone does not prove scoping. Some markets accept a folder URL but still ingest the entire repository pack.

Run plan after setting these fields. The CLI reports missing inputs and layout blockers per market.

5. Build A Review Bundle

Use bundle before live submission. The bundle gives you:

  • normalized skill metadata
  • a per-market readiness matrix
  • payloads for wrapped live targets
  • manual submission notes for every non-wrapped target

Use the bundle as an operator review packet, not just a payload dump. Before live submit, check that it exposes:

  • the canonical repository URL and SKILL.md URL
  • the exact URL scope you intend to submit
  • one short example task or prompt for the listing
  • the strongest verification URLs you expect to use after submit

6. Publish Safely

Use this order:

  1. inspect
  2. plan
  3. bundle
  4. publish \x3Cmarket> without --execute
  5. publish \x3Cmarket> with --execute
  6. verify with the market-specific public checks

Do not claim one-click support for a market marked manual-web, index-only, incompatible, or needs-recon.

Interpret live responses by semantics, not by HTTP status alone:

  • alreadyExists or updated often means the market recognized an existing public listing.
  • processing or submission received means the intake pipeline accepted the request, not that the listing is public yet.
  • duplicate-name or pending-review errors can still prove the market recognized the listing identity.
  • a redirect to a public detail page is stronger evidence than a flash message or success banner.

7. Record Outcomes Outside The Skill

Keep reusable skill docs free of sample-specific evidence.

  • Do not store live submission IDs, PR numbers, sample slugs, or dated field logs inside this skill.
  • Put one-off execution evidence in the task conversation, a separate operator notebook, or a temporary bundle outside the reusable skill folder.
  • Update this skill only when the reusable workflow changes.

Bundled CLI

inspect

Parse frontmatter, derive summary text, detect repository layout, and show normalized metadata.

plan

Build a readiness matrix for known markets and report missing fields or layout warnings.

bundle

Write a reusable submission bundle containing:

  • manifest.json
  • market-plan.json
  • per-market payload files
  • manual submission notes

publish \x3Cmarket>

Supports live execution only when --execute is present.

Wrapped live targets:

  • clawhub
  • agent-skills-md
  • agentskill-sh
  • skillz-directory
  • skillstore-io
  • skills-re
  • skills-sh
  • skillsmd-dev
  • bogen-ai
  • skillsrep
  • a2a-market

recon

Fetch known market pages and check expected markers. Run this when a marketplace may have changed since the last verification pass.

open_manual_submit_pages.py

Open the current manual-web submit pages in the default browser, print a short per-site checklist, and optionally print exact folder and SKILL.md URLs for the skills being submitted.

Operating Rules

  • Publish from a public repository URL unless the market is local-CLI only.
  • Keep skill content English-only unless a target market explicitly requires localized marketing copy.
  • Prefer stable repository URLs and stable SKILL.md URLs when the market supports deep links.
  • When a market expects a different repository layout, create a publish mirror instead of mutating the source repository just for one listing.
  • Prefer the strongest public verification surface the market exposes: status API, workflow URL, detail page, public read API, then search page.
  • If a folder URL submission returns a pack-sized import count, treat the scope as repository-wide until the public result proves otherwise.
  • Keep the reusable skill free of sample submission logs, IDs, and dated evidence.
  • Treat market behavior as time-sensitive. Re-run recon before changing adapters or writing claims about current support.

References

能力标签
cryptorequires-walletrequires-paid-servicerequires-sensitive-credentials
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install skill-market-publisher
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /skill-market-publisher 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
skill-market-publisher v0.1.0 - Initial release: publish, submit, and verify local skills across public skill marketplaces and directories. - Provides CLI tools to inspect a skill, plan market submissions, generate review bundles, perform automated or manual submissions, and verify results. - Supports both automated and manual workflows for markets like AgentSkill.sh, Skillstore, SkillNet, SkillsMD, SkillHub, and others. - Documents best practices for building reusable, market-ready skill release plans. - Emphasizes separation of reusable skill metadata from one-off submission logs or marketplace-specific evidence.
元数据
Slug skill-market-publisher
版本 0.1.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Skill Market Publisher 是什么?

Publish, submit, and verify local skills across public skill marketplaces, directories, and registries. Use when an agent needs to take a skill folder or ski... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 9 次。

如何安装 Skill Market Publisher?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install skill-market-publisher」即可一键安装,无需额外配置。

Skill Market Publisher 是免费的吗?

是的,Skill Market Publisher 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Skill Market Publisher 支持哪些平台?

Skill Market Publisher 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Skill Market Publisher?

由 Linyue Pan(@zjsxply)开发并维护,当前版本 v0.1.0。

💬 留言讨论