运行时依赖
安装命令
点击复制技能文档
Promote 技能 Overview
Use this 技能 to turn a local 技能.md into a public marketplace 列出ing and promotion 检查列出. The 工作流 is 代理-friendly:
验证 and sanitize the 技能 source. 创建 a public source URL, preferably a GitHub repo or public gist raw URL. Publish to uGig first because uGig 导入s the raw 技能.md, 扫描s it, and exposes a "Publish Everywhere" 检查列出. Use sh1pt as the cross-marketplace promotion manifest/command 生成器. Work through other marketplaces by 命令行工具, PR, account submission, or manual 上传 depending on the 平台.
Never include 凭证s, cookies, private env values, or personal secrets in a public 技能 file or marketplace 列出ing.
When to Use
Use this when the user says:
"publish this 技能" "promote this 技能" "put it on uGig / ClawHub / LobeHub / Goose / Kilo" "make a public 技能.md" "publish everywhere" "创建 a promote-技能 工作流"
Do not use this for job 应用s themselves; use job-board specific 技能s for that.
输入s to collect or infer
Required:
Local 技能.md path or directory contAIning it. Public-safe title, slug, tagline, description, category, tags. Price in sats; 0 means free.
Optional:
Existing public raw 技能.md URL. GitHub repo/gist preference. uGig 凭证s or already-认证d browser 性能分析. Marketplace-specific 凭证s/API keys for 平台s that need them. Safety 检查列出 before publishing
运行 a secrets 扫描 before any public 上传:
grep -RInE 'password|passwd|secret|令牌|API[_-]?key|BEGIN .*PRIVATE|private[_-]?key|cookie|凭证' 技能.md . 2>/dev/null || true
Then manually inspect hits. Mentions of 环境 variable names are fine; real values are not.
For pAId 列出ings, remember: marketplaces that 导入 from a public raw URL may expose the artifact publicly. If the artifact is not intended to be free, 验证 访问-gating from an anonymous browser before clAIming it is paywalled.
uGig 工作流
Preferred 命令行工具 path once ugig supports 技能s new:
ugig 技能s new \ --title "My 技能" \ --description "Public 凭证-free 技能.md for ..." \ --tagline "Short marketplace tagline" \ --category 自动化 \ --price 0 \ --tags "技能s,自动化,代理s" \ --source-url "https://raw-or-gist-url/技能.md"
ugig 技能s 创建 is an alias for ugig 技能s new. If the 安装ed 命令行工具 is older or does not support the needed fields, use the uGig browser form:
https://ugig.net/仪表盘/技能s/new
Known form fields:
技能 File URL: raw/direct public 技能.md URL. Title. Tagline. Description. Price: 0 for free. Category. Tags: keep combined tags short; supported-代理 chips may count toward the maximum. ClawHub URL: fill after publishing to ClawHub.
Verification:
列出ing URL is /技能s/. Page says Free or the expected price. Security 扫描 says 清理. Medium 警告 for 环境 variable 访问 is expected if the 技能 documents env vars. Source URL is correct and contAIns no secrets. sh1pt 工作流
The sh1pt 命令行工具 should provide top-level 技能 promotion commands:
sh1pt 技能s new --技能-file ./技能.md --source-url "https://raw-or-gist-url/技能.md" --price 0 sh1pt 技能s publish --all --dry-运行 sh1pt 技能s publish --marketplace ugig ClawHub goose sh1pt 技能s marketplaces
Expected behavior:
sh1pt 技能s new 创建s sh1pt.技能.json by reading frontmatter from the local 技能.md and filling title/slug/description/tags/price/source URL. sh1pt 技能s publish --all --dry-运行 prints exact commands or manual steps for every known marketplace. Non-dry 运行s should not blindly 执行 unknown third-party 命令行工具s until 凭证s/API 设置up is verified; print commands and mark manual/action-required 状态s.
Implementation locations vary by project. In a typical sh1pt-style monorepo, 添加 the command 模块 under the 命令行工具 package and register it from the 命令行工具 entrypoint.
Marketplace matrix Marketplace Method Publish pattern uGig 命令行工具/API or browser ugig 技能s new ... --source-url ClawHub 命令行工具 ClawHub publish . --slug --version 1.0.0 技能s.sh Auto-索引ed Push public GitHub repo contAIning 技能.md LobeHub 技能s Submit Use site submission; 安装 command shown as npx @lobehub/命令行工具 技能 安装 Goose 技能s PR / 安装 URL goose 技能 添加 ; submit PR if directory requires it Kilo Marketplace PR Fork + PR with valid 技能.md; 安装 command kilo 技能 安装 技能store GitHub repo Submit repo/raw URL for security analysis FreeMyGent 上传 上传 技能.md, 设置 price, connect wallet ClawMart API clawmart publish . --name Manus 代理 技能s Account Free account required; submit through account UI VS Code 代理 技能s GitHub Publish via 扩展-索引ed GitHub repo/PR Moltbook / NormieClaw Submit Submit, 设置 price, pass 质量 检查 Public source choices
Quick gist:
gh gist 创建 ./技能.md --public --desc "<技能 title>" gh API gists/ --jq '.files["技能.md"].raw_url'
Better for auto-索引ers:
mkdir