Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

publish-to-marketplaces发布到市场

Agent Skill

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

总安装

489

周安装

21

GitHub Stars

31

下载量

171
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:publish-to-marketplaces(发布到市场)
来源仓库:https://github.com/hexiaochun/seedance2-api
仓库路径:skills/publish-to-marketplaces
安装命令:
npx skills add https://github.com/hexiaochun/seedance2-api --skill publish-to-marketplaces
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hexiaochun/seedance2-api --skill publish-to-marketplaces

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 建议确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • publish-to-marketplaces 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Publish Skills to Marketplaces

Guide for listing agent skills on agentskill.sh and skills.sh — the two largest skill directories.

Platform Comparison

agentskill.shskills.sh
Scale47,000+ skills33,500+ skills
Backed byYuki CapitalVercel Labs
Install cmd/learn @owner/reponpx skills add owner/repo
Submit methodWeb form (Analyze & Import)CLI telemetry on first install
Auto-syncYes (pulls from GitHub)Partial (telemetry-driven cache)
RankingQuality score + installsAnonymous install telemetry

Prerequisites

Before publishing, ensure:

  1. GitHub repo is public with a valid SKILL.md at a discoverable path (root or .cursor/skills/<name>/)
  2. SKILL.md has proper frontmatter:
---
name: your-skill-name          # lowercase, hyphens, max 64 chars
description: >-                 # English, max 1024 chars
  What it does and when to use it.
license: MIT
compatibility: Requirements and supported agents.
metadata:
  author: github-username
  version: "1.0"
  tags: tag1 tag2 tag3
---
  1. Description is in English — both platforms have international audiences
  2. Body content is in English — skills.sh renders the full SKILL.md as the listing page

Step 1: Publish to agentskill.sh

First-time submission

  1. Navigate to https://agentskill.sh/submit
  2. Paste the GitHub repo URL (e.g. https://github.com/owner/repo)
  3. Click Analyze & Import — wait for security scan to complete
  4. Verify the result card shows the correct skill name and description

Verify listing

Search at https://agentskill.sh/q/<skill-name> and confirm:

  • Skill name matches name field in frontmatter
  • Description matches description field
  • Security score is displayed (aim for 100/100)

Detail page lives at: https://agentskill.sh/@owner/skill-name

Install command for users

/learn @owner/skill-name

Step 2: Publish to skills.sh

First-time submission

skills.sh has no web submission form. Listing is triggered by the first install:

npx skills add owner/repo --yes

The --yes flag skips interactive prompts. This command:

  • Clones the repo
  • Detects all SKILL.md files
  • Installs to all compatible agent directories
  • Sends anonymous telemetry to skills.sh (registers the skill)

Verify listing

Check https://skills.sh/owner/repo/skill-name — the page renders the full SKILL.md content.

Install command for users

npx skills add owner/repo

Or install a specific skill from a multi-skill repo:

npx skills add owner/repo --skill skill-name

Step 3: Update Listings After Changes

When you modify SKILL.md and push to GitHub:

PlatformUpdate mechanismAction needed
agentskill.shAuto-sync from GitHubRe-submit at /submit for immediate refresh, or wait for auto-sync
skills.shTelemetry on next installRun npx skills add owner/repo --yes in a temp dir to trigger

Quick update script

# 1. Push changes to GitHub
git add -A && git commit -m "update skill listing" && git push

# 2. Re-submit to agentskill.sh (browser)
# Navigate to https://agentskill.sh/submit → paste repo URL → Analyze & Import

# 3. Trigger skills.sh refresh
TMPDIR=$(mktemp -d)
cd "$TMPDIR"
npx skills add owner/repo --yes
rm -rf "$TMPDIR"

Troubleshooting

skills.sh shows stale content

skills.sh caches content from telemetry data. After a rename or major update:

  • Run a fresh install via npx skills add to send new telemetry
  • Allow 12–24 hours for the platform to aggregate and refresh
  • If still stale after 48h, contact the platform

skills.sh shows old skill name

The skill name is cached from the first telemetry report. A rename requires:

  1. Push the updated SKILL.md with the new name field
  2. Run npx skills add owner/repo --yes to send fresh telemetry
  3. Wait for platform cache refresh (may take 24–48h)

agentskill.sh not showing updates

Re-submit at https://agentskill.sh/submit with the same repo URL. This forces a fresh fetch from GitHub.

Security score issues

  • Socket alert: Usually minor dependency concerns — review and assess
  • Snyk warning: Check for known vulnerabilities in scripts
  • Gen Agent Trust Hub: Automated content safety check — ensure no harmful patterns

Checklist

Publishing Checklist:
- [ ] SKILL.md has valid YAML frontmatter (name, description)
- [ ] Description is in English, specific, includes trigger terms
- [ ] Body content is in English for international visibility
- [ ] GitHub repo is public
- [ ] Submitted to agentskill.sh via /submit
- [ ] Verified agentskill.sh listing and security score
- [ ] Triggered skills.sh listing via npx skills add
- [ ] Verified skills.sh detail page
- [ ] Updated README with install commands for both platforms

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.94%
按下载量换算63

Claude

29.79%
按下载量换算51

Cursor

18.13%
按下载量换算31

Gemini CLI

9.77%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills