返回 Skill 列表
extension
分类: AI Agent 能力无需 API Key

markethub

使用MarketHub CLI从markethub.com搜索、安装、更新和发布代理技能。当您需要即时获取新技能、将已安装的技能同步到最新版本或特定版本,或者使用npm安装的markethub CLI发布新的/更新的技能文件夹时,请使用此工具。

person作者: jakexiaohubgithub

MarketHub CLI

Install

npm i -g markethub

Auth (publish)

markethub login
markethub whoami

Search

markethub search "postgres backups"

Install

markethub install my-skill
markethub install my-skill --version 1.2.3

Update (hash-based match + upgrade)

markethub update my-skill
markethub update my-skill --version 1.2.3
markethub update --all
markethub update my-skill --force
markethub update --all --no-input --force

List

markethub list

Publish

markethub publish ./my-skill --slug my-skill --name "My Skill" --version 1.2.0 --changelog "Fixes + docs"

Notes

  • Default registry: https://markethub.com (override with CLAWHUB_REGISTRY or --registry)
  • Default workdir: cwd (falls back to MarketBot workspace); install dir: ./skills (override with --workdir / --dir / CLAWHUB_WORKDIR)
  • Update command hashes local files, resolves matching version, and upgrades to latest unless --version is set