HiveTerm 0.22 → 0.25.5: faster, calmer, more agents
I went quiet here after 0.22. We're on 0.25.5 now, and most of what landed in between is the unglamorous stuff: speed, reliability, and getting out of your way. Here's what actually changed if you've been away.

Faster, by a lot
Spawning a Claude agent on macOS used to stall for ~23 seconds when more than one came up at once. We moved the PTY off Tauri's IPC channel onto a loopback socket, so now ten agents start near-instantly. Windows got its own overhaul in 0.25.0. The "Not Responding" freezes when you opened several projects or switched branches are gone, because every git and filesystem call now runs off the UI thread. Large files open without the hitch too: the viewer only renders what's on screen and highlights syntax in the background.
Git without leaving the terminal
There's a real diff panel per project now: branch status, changed files with +/- counts, a file viewer with syntax highlighting, and Commit / Push / Create PR sitting right there. If an agent is running, the commit buttons hand the work to it. It writes the message and pushes. You also get a VSCode-style Find in Files and a Cmd+K command palette.
Sub-agents you can actually read
When an agent spawns helpers over MCP, they now nest under whoever started them with proper tree connectors. Multi-agent runs stopped being a flat soup of names.
A few more things
- Grok CLI is a first-class agent now, next to Claude, Codex, and Gemini.
- One-click Resume for stopped Claude sessions (`claude --resume`), so it picks up where it left off.
- Five monospace fonts bundled (Iosevka, JetBrains Mono, Fira Code, Geist Mono). Nothing to install.
- Sign in with Google or GitHub, and you stay signed in for 30 days across restarts.
- Updates apply themselves silently on restart. No more modal nagging you.
- Paste a screenshot straight into Codex and Gemini, not just Claude.
Plus a long tail of fixes: theme and language that actually persist, keystrokes landing in the agent you clicked, Emacs shortcuts working again on macOS.
If you tried HiveTerm around 0.22 and bounced, this is a good moment to look again. Happy to answer anything in the thread.
Replies
Cutting multi-agent startup from ~23 seconds to near-instant is a massive improvement 🔥 That kind of latency completely changes how often people use a workflow.
@new_user___090202674ab6e030a7a9c52 A lot of terminal AI tools still feel experimental. This update sounds more focused on making the environment stable enough for everyday use.
HiveTerm
@mathew_chang That's the whole bet, honestly. The flashy demo is easy; living in the tool every day is where most terminal-AI stuff falls apart. Most of 0.22 → 0.25.5 was unglamorous: kill the Windows freezes, make agents spawn fast, keep your session and settings from resetting. Boring on a changelog, but it's the difference between a toy and something you open every morning.
HiveTerm
@new_user___090202674ab6e030a7a9c52 Exactly the reason we chased it. At 23s you batch your agent runs and dread spinning up a new one. Near-instant means you just do it, ten times a day, without thinking. The fix was moving the PTY off Tauri's IPC onto a loopback socket so parallel spawns stop queuing behind each other.