返回 Skill 列表
extension
分类: 开发与工程无需 API Key

moltbot registry

使用Moltbot注册表CLI从本地注册表搜索、安装、更新和发布代理技能。当您需要即时获取新技能、将已安装的技能同步到最新版本或特定版本,或者使用npm安装的moltbot注册表CLI发布新的/更新的技能文件夹时,请使用此命令。

person作者: jakexiaohubgithub

Moltbot registry CLI

Install

npm i -g moltbot registry

Auth (publish)

moltbot registry login
moltbot registry whoami

Search

moltbot registry search "postgres backups"

Install

moltbot registry install my-skill
moltbot registry install my-skill --version 1.2.3

Update (hash-based match + upgrade)

moltbot registry update my-skill
moltbot registry update my-skill --version 1.2.3
moltbot registry update --all
moltbot registry update my-skill --force
moltbot registry update --all --no-input --force

List

moltbot registry list

Publish

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

Notes

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