@hiveclaw243/hive-bridge
v0.1.5
Published
Hive Local Agent Bridge CLI, Skill instructions, and WebSocket channel runner
Readme
Hive Bridge
Hive Bridge connects a local agent runtime to the user's Hive Local Agent Channel.
Install The Agent Skill
Use the standard Skills CLI entrypoint:
npx skills add https://github.com/rocky2431/hive-bridge-skill --skill hive-bridgeThe skill is the local agent's operation guide. It tells Codex, Claude Code, Cursor, or another local agent how to install and run the bridge.
Install The CLI Directly
npm install -g @hiveclaw243/hive-bridgeCommands
hive-bridge login
hive-bridge status
hive-bridge upload ./report.md
hive-bridge run --transport websocketRoles
- Skill: installation and operation instructions for the local agent.
- CLI: login, token storage, upload, and channel runner.
- WebSocket runner: long-lived outbound channel for cloud-to-local chat, file transfer, and work requests.
hive-bridge login creates a long-lived binding. hive-bridge run --transport websocket is the online runner: it keeps one WebSocket session open for consecutive cloud messages, streams command stdout/stderr as delta events, and reconnects after transient WebSocket failures.
The GitHub skill package and the npm CLI package are intentionally separate:
https://github.com/rocky2431/hive-bridge-skill: installed bynpx skills add.@hiveclaw243/hive-bridge: installed by the skill withnpm install -g.
