{"id":48443326,"url":"https://github.com/lucascaro/hive","last_synced_at":"2026-05-10T00:02:53.503Z","repository":{"id":348624105,"uuid":"1198938952","full_name":"lucascaro/hive","owner":"lucascaro","description":"A terminal TUI for managing multiple AI coding agent sessions across projects — Claude, Codex, Gemini, GitHub Copilot, Aider, OpenCode, and more.","archived":false,"fork":false,"pushed_at":"2026-05-01T08:26:55.000Z","size":5220,"stargazers_count":5,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-01T10:28:58.499Z","etag":null,"topics":["ai","claude","codex","copilot","multiplexer","productivity","terminal"],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lucascaro.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-01T22:57:37.000Z","updated_at":"2026-04-24T15:51:55.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/lucascaro/hive","commit_stats":null,"previous_names":["lucascaro/hive"],"tags_count":23,"template":false,"template_full_name":null,"purl":"pkg:github/lucascaro/hive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascaro%2Fhive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascaro%2Fhive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascaro%2Fhive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascaro%2Fhive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lucascaro","download_url":"https://codeload.github.com/lucascaro/hive/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lucascaro%2Fhive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32677933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T02:33:58.958Z","status":"ssl_error","status_checked_at":"2026-05-06T02:33:39.611Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","claude","codex","copilot","multiplexer","productivity","terminal"],"created_at":"2026-04-06T16:31:05.637Z","updated_at":"2026-05-10T00:02:53.476Z","avatar_url":"https://github.com/lucascaro.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hive\n\nA native desktop app for managing multiple AI coding agent sessions —\nClaude, Codex, Gemini, Copilot, Aider, plain shells — across projects.\n\n\u003e **`main` is now Hive v2 — the native daemon + GUI rewrite.** The legacy\n\u003e tmux-backed TUI (Hive v1, `v0.14.x`) lives on the\n\u003e [`release/v1`](https://github.com/lucascaro/hive/tree/release/v1) branch\n\u003e for bug fixes. See `docs/native-rewrite/` for v2 design docs (PLAN.md\n\u003e plus per-phase notes).\n\n## Status\n\n**Alpha.** The v2 architecture is feature-complete for daily use; the\ndownload is pre-release. Latest release:\n[v2.0.0-alpha.1](https://github.com/lucascaro/hive/releases/tag/v2.0.0-alpha.1).\n\nWhat works:\n- Multi-session daemon (`hived`) — sessions persist across GUI restart\n- Wails-based desktop GUI with xterm.js — full keyboard control,\n  font scaling, dark theme\n- Projects (name, color, working dir) — sidebar tree\n- Agent launcher (Claude, Codex, Gemini, Copilot, Aider, shell)\n- Grid view: per-project (⌘G) or all-sessions (⇧⌘G), spatial arrow nav\n- Multi-window (⇧⌘N) — independent windows share the same daemon\n- BEL → desktop notification + visual pulse on non-focused sessions\n\nNot yet shipping: scrollback resume across daemon restart, splits\ninside grid cells, workflows / agent teams, code signing.\n\n## Build\n\nRequires Go 1.22+, Node 18+, and the Wails CLI:\n\n```sh\ngo install github.com/wailsapp/wails/v2/cmd/wails@latest\n```\n\nThen from the repo root:\n\n```sh\n./build.sh                    # macOS .app at cmd/hivegui/build/bin/hivegui.app\n./build.sh --open             # build then launch\n./build.sh --zip --version v2.0.0-alpha.2   # also write release/\u003cname\u003e.zip\n```\n\nFor Windows or Linux, build the GUI and the daemon separately:\n\n```sh\n# Windows (cross-build from macOS works)\n( cd cmd/hivegui \u0026\u0026 wails build -platform windows/amd64 )\nGOOS=windows GOARCH=amd64 go build -o cmd/hivegui/build/bin/hived.exe ./cmd/hived\n\n# Linux (build natively)\n( cd cmd/hivegui \u0026\u0026 wails build -platform linux/amd64 )\nGOOS=linux GOARCH=amd64 go build -o cmd/hivegui/build/bin/hived ./cmd/hived\n```\n\n`hivegui` and `hived` must live in the same directory; the GUI\nauto-spawns the daemon at startup.\n\n## Updating\n\nTagged release builds check GitHub for newer releases automatically:\nonce on launch and every six hours. When a newer tag is found, the\nGUI shows an \"Update available\" banner with a one-click link to the\nrelease page. The check is also reachable manually from\n**File → Check for Updates…**.\n\nThe check is a single anonymous `GET` to\n`api.github.com/repos/lucascaro/hive/releases/latest` (no\nidentifying data beyond a `User-Agent: hivegui/\u003cbuild-id\u003e` header).\nUntagged dev builds — anything built without `./build.sh --version\n\u003ctag\u003e` — skip the check entirely and never call out.\n\n## Layout\n\n```\ncmd/\n  hived/           # session daemon\n  hivegui/         # Wails GUI client\ninternal/\n  wire/            # protocol v1 (frame format + JSON control messages)\n  session/         # one PTY + scrollback\n  registry/        # sessions + projects + persistence\n  daemon/          # socket listener + dispatch\n  agent/           # built-in agent launcher catalog\ndocs/\n  native-rewrite/  # v2 design docs (PLAN.md, phase-{0..5}.md)\nspikes/            # phase-0 reference code (kept for posterity)\nbuild.sh           # macOS universal build\n```\n\n## Keybinds\n\n| Key | Action |\n|---|---|\n| ⌘N | New session (agent launcher) |\n| ⇧⌘N | New window |\n| ⌘W | Kill active session |\n| ⇧⌘W | Close this window |\n| ⇧⌘P | New project |\n| ⌘G / ⇧⌘G | Per-project grid / all-sessions grid |\n| ⌘Enter | Toggle grid / single |\n| ⌘arrows | Spatial nav (grid) / session nav (single) |\n| ⌘[ / ⌘] | Previous / next project |\n| ⌘1–9 | Jump to nth session |\n| ⌘= / ⌘- / ⌘0 | Font size up / down / reset |\n| ⌘S | Toggle sidebar |\n\n## Contributing\n\nSee `AGENTS.md` for repo-wide rules and `CONTRIBUTING.md` for the\ncontribution flow. The native rewrite has its own design docs under\n`docs/native-rewrite/`.\n\n## License\n\nMIT — see `LICENSE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucascaro%2Fhive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flucascaro%2Fhive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flucascaro%2Fhive/lists"}