Claude-skill-registry-data markethub

Use the MarketHub CLI to search, install, update, and publish agent skills from markethub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed markethub CLI.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry-data
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry-data "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/markethub" ~/.claude/skills/majiayu000-claude-skill-registry-data-markethub && rm -rf "$T"
manifest: data/markethub/SKILL.md
source content

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