@autonomee/gohub
v0.8.0
Published
Go Hub CLI — install, update, search, and publish agent skills.
Readme
gohub
Go Hub CLI — install, update, search, and publish agent skills as folders.
Install
# From this repo (shortcut script at repo root)
bun gohub --help
# Once published to npm
# npm i -g gohubAuth (publish)
gohub login
# or
gohub auth login
# Headless / token paste
# or (token paste / headless)
gohub login --token clh_...Notes:
- Browser login opens
https://hub.autonomee.ai/cli/authand completes via a loopback callback. - Token stored in
~/Library/Application Support/gohub/config.jsonon macOS (override viaGOHUB_CONFIG_PATH).
Examples
gohub search "postgres backups"
gohub install my-skill-pack
gohub update --all
gohub update --all --no-input --force
gohub publish ./my-skill-pack --slug my-skill-pack --name "My Skill Pack" --version 1.2.0 --changelog "Fixes + docs"Sync (upload local skills)
# Start anywhere; scans workdir first, then Autonomee workspace if configured.
gohub sync
# Explicit roots + non-interactive dry-run
gohub sync --root ../autonomee/skills --all --dry-runDefaults
- Site:
https://hub.autonomee.ai(override via--siteorGOHUB_SITE) - Registry: discovered from
/.well-known/gohub.jsonon the site (override via--registryorGOHUB_REGISTRY) - Workdir: current directory (falls back to Autonomee workspace if configured; override via
--workdirorGOHUB_WORKDIR) - Install dir:
./skillsunder workdir (override via--dir)
