Loading...
Loading...
Publish and update agent skills on agentskill.sh and skills.sh marketplaces. Covers SKILL.md preparation, submission, verification, and ongoing sync. Use when the user mentions publishing skills, listing on marketplace, updating skill listings, or asks about agentskill.sh or skills.sh.
npx skill4agent add hexiaochun/seedance2-api publish-to-marketplaces| agentskill.sh | skills.sh | |
|---|---|---|
| Scale | 47,000+ skills | 33,500+ skills |
| Backed by | Yuki Capital | Vercel Labs |
| Install cmd | | |
| Submit method | Web form (Analyze & Import) | CLI telemetry on first install |
| Auto-sync | Yes (pulls from GitHub) | Partial (telemetry-driven cache) |
| Ranking | Quality score + installs | Anonymous install telemetry |
SKILL.md.cursor/skills/<name>/---
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
---https://agentskill.sh/submithttps://github.com/owner/repohttps://agentskill.sh/q/<skill-name>namedescriptionhttps://agentskill.sh/@owner/skill-name/learn @owner/skill-namenpx skills add owner/repo --yes--yeshttps://skills.sh/owner/repo/skill-namenpx skills add owner/reponpx skills add owner/repo --skill skill-name| Platform | Update mechanism | Action needed |
|---|---|---|
| agentskill.sh | Auto-sync from GitHub | Re-submit at |
| skills.sh | Telemetry on next install | Run |
# 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"npx skills addnamenpx skills add owner/repo --yeshttps://agentskill.sh/submitPublishing 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