skillmarketplace by starchild-ai-agent/official-skills
npx skills add https://github.com/starchild-ai-agent/official-skills --skill skillmarketplacefrontmatter, obtaining an OIDC token, and POSTing to /skills/publish
SKILL.md
始终使用 search_skills 工具。 请勿手动使用 curl、浏览 GitHub 或下载 SKILL.md 文件。
search_skills 会自动完成所有操作:
npx skills add 安装最佳匹配项(默认:auto_install=true)广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
search_skills(query="deploy") # 搜索 + 自动安装最佳匹配项
search_skills(query="trading") # 搜索 + 自动安装
search_skills(query="k8s", auto_install=false) # 仅搜索,不安装
search_skills() # 列出所有已安装的技能
search_skills 安装技能后,该技能立即可用。仅当您手动编辑了技能文件时,才需要调用 skill_refresh()。
curl 访问 GitHub 仓库来浏览/下载技能mkdir -p skills/<name> 并手动编写 SKILL.mdweb_fetch 下载技能文件发布仍需使用网关。只有 Starchild 创作的技能才能发布。
---
name: my-skill
version: 1.0.0
description: What this skill does
author: your-name
tags: [tag1, tag2]
---
| 字段 | 是否必需 | 规则 |
|---|---|---|
name | 是 | 小写字母、数字和连字符,2-64 个字符 |
version | 是 | 语义化版本(例如 1.0.0)— 发布后不可变 |
description | 推荐 | 用于搜索的简短摘要 |
author | 推荐 | 作者名称 |
tags | 推荐 | 用于提高可发现性的标签数组 |
步骤 1:验证技能目录
SKILL_DIR="./skills/my-skill"
head -20 "$SKILL_DIR/SKILL.md"
步骤 2:获取 OIDC 令牌
TOKEN=$(curl -s --unix-socket /.fly/api \
-X POST -H "Content-Type: application/json" \
"http://localhost/v1/tokens/oidc" \
-d '{"aud": "skills-market-gateway"}')
步骤 3:构建并发送发布请求
SKILL_DIR="./skills/my-skill"
GATEWAY="https://skills-market-gateway.fly.dev"
PAYLOAD=$(python3 -c "
import os, json
files = {}
for root, dirs, fnames in os.walk('$SKILL_DIR'):
for f in fnames:
full = os.path.join(root, f)
rel = os.path.relpath(full, '$SKILL_DIR')
with open(full) as fh:
files[rel] = fh.read()
print(json.dumps({'files': files}))
")
curl -s -X POST "$GATEWAY/skills/publish" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d "$PAYLOAD" | python3 -m json.tool
{
"namespace": "@554",
"name": "my-skill",
"version": "1.0.0",
"tag": "@554/my-skill@1.0.0",
"download_url": "https://github.com/.../bundle.zip",
"release_url": "https://github.com/.../releases/tag/..."
}
User wants to find/install a skill
→ Use search_skills(query) tool — it searches all sources and auto-installs
→ NEVER curl GitHub or manually download files
User wants to list installed skills
→ Use search_skills() with no query
User wants to publish a skill
→ Validate SKILL.md frontmatter
→ Get OIDC token (audience: skills-market-gateway)
→ POST to /skills/publish
User wants to create a new skill
→ Read the skill-creator skill first
每周安装量
3.3K
代码仓库
GitHub 星标
1
首次出现
12 天前
安全审计
安装于
openclaw3.3K
opencode34
gemini-cli34
github-copilot34
amp34
cline34
frontmatter, obtaining an OIDC token, and POSTing to /skills/publish
SKILL.md
Always use thesearch_skills tool. Do NOT manually curl, browse GitHub, or download SKILL.md files.
search_skills does everything automatically:
npx skills add (default: auto_install=true)search_skills(query="deploy") # search + auto-install best match
search_skills(query="trading") # search + auto-install
search_skills(query="k8s", auto_install=false) # search only, don't install
search_skills() # list all installed skills
After search_skills installs a skill, it's immediately available. Call skill_refresh() only if you manually edited skill files.
curl GitHub repos to browse/download skillsmkdir -p skills/<name> and manually write SKILL.mdweb_fetch to download skill filesPublishing still uses the gateway. Only Starchild-authored skills can be published.
---
name: my-skill
version: 1.0.0
description: What this skill does
author: your-name
tags: [tag1, tag2]
---
| Field | Required | Rules |
|---|---|---|
name | Yes | Lowercase, alphanumeric + hyphens, 2-64 chars |
version | Yes | Semver (e.g. 1.0.0) — immutable once published |
description | Recommended | Short summary for search |
author | Recommended | Author name |
tags |
Step 1: Validate the skill directory
SKILL_DIR="./skills/my-skill"
head -20 "$SKILL_DIR/SKILL.md"
Step 2: Get OIDC token
TOKEN=$(curl -s --unix-socket /.fly/api \
-X POST -H "Content-Type: application/json" \
"http://localhost/v1/tokens/oidc" \
-d '{"aud": "skills-market-gateway"}')
Step 3: Build and send publish request
SKILL_DIR="./skills/my-skill"
GATEWAY="https://skills-market-gateway.fly.dev"
PAYLOAD=$(python3 -c "
import os, json
files = {}
for root, dirs, fnames in os.walk('$SKILL_DIR'):
for f in fnames:
full = os.path.join(root, f)
rel = os.path.relpath(full, '$SKILL_DIR')
with open(full) as fh:
files[rel] = fh.read()
print(json.dumps({'files': files}))
")
curl -s -X POST "$GATEWAY/skills/publish" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d "$PAYLOAD" | python3 -m json.tool
{
"namespace": "@554",
"name": "my-skill",
"version": "1.0.0",
"tag": "@554/my-skill@1.0.0",
"download_url": "https://github.com/.../bundle.zip",
"release_url": "https://github.com/.../releases/tag/..."
}
User wants to find/install a skill
→ Use search_skills(query) tool — it searches all sources and auto-installs
→ NEVER curl GitHub or manually download files
User wants to list installed skills
→ Use search_skills() with no query
User wants to publish a skill
→ Validate SKILL.md frontmatter
→ Get OIDC token (audience: skills-market-gateway)
→ POST to /skills/publish
User wants to create a new skill
→ Read the skill-creator skill first
Weekly Installs
3.3K
Repository
GitHub Stars
1
First Seen
12 days ago
Security Audits
Gen Agent Trust HubWarnSocketPassSnykFail
Installed on
openclaw3.3K
opencode34
gemini-cli34
github-copilot34
amp34
cline34
React 组合模式指南:Vercel 组件架构最佳实践,提升代码可维护性
102,200 周安装
| Recommended |
| Array of tags for discoverability |