| Filename | Latest commit message | Latest commit date |
|---|---|---|
Add specific icons for matrix tools that had the generic 💬 fallback: - mcp__matrix__read_room → 📖 - mcp__matrix__mark_read → 👁️ - mcp__matrix__list_rooms / list_room_members / list_invites → 📋 - mcp__bash__kill → 🛑 (was generic 🔧) Add fmtToolUse cases for high-use tools that fell through to fmtArgsGeneric: - set_status: 'set_status* "idle"' instead of 'set_status text: "idle"' - get_loose_ends: 'get_loose_ends* [iris]' or 'get_loose_ends*()' - get_agent_meta: 'get_agent_meta* iris' or 'get_agent_meta*()' - cancel_loose_end: 'cancel_loose_end* question #42' - bash kill: 'kill* abc123 [force]' - Matrix tools: 'read_room* !abc1234 [50]', 'mark_read* !abc1234', 'send_message* → !room: "body"', 'send_dm* → @mara: "body"', 'send_reply*', 'send_reaction*', 'join_room*', 'open_dm*', 'invite_user*', 'download_file*' Also extend the short-name shortening to cover mcp__matrix__ prefix (was only hyperhive + bash), so matrix tool rows show 'read_room*' instead of 'mcp__matrix__read_room' as the prefix. Two small helpers added: fmtRoom (truncates !id before ':' for readability; keeps #alias intact) and fmtUser (@user:server → @user). Closes #2198. Updates terminal-rendering.md icon list. |
||
| .. | ||
| packages | ||
| .gitignore | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
hyperhive frontend
npm workspaces project for the hyperhive browser-facing assets:
packages/shared/— shared modules used by both surfaces (terminal pane, Catppuccin palette + body typography).packages/dashboard/— the hive-c0re dashboard SPA.packages/agent/— the per-container web UI (default agent page, stats, screen).
Build
npm install # one-off; uses the checked-in package-lock.json
npm run build # builds every workspace into packages/*/dist/
The Rust binaries serve packages/dashboard/dist/ and
packages/agent/dist/ via tower_http::ServeDir at runtime; the
build derivation is wired up in nix/modules/frontend.nix. Per-agent
additions are layered on top of the default agent dist via the
hyperhive.frontend.extraFiles option in agent.nix.
Why npm + esbuild
- Hermetic: dependencies vendored via the checked-in lockfile;
buildNpmPackagein nix uses it as the source-of-truth so the output is reproducible without network access at build time. - esbuild: vanilla-JS bundler, no framework runtime overhead.
Each workspace's
build.mjsis ~30 lines. - Single-PR migration: see issue #273 for the design proposal and the four-commit shape (npm scaffold → nix derivations → container plumbing → Rust cutover).