writing/blog/2026/08
BlogAug 1, 2026·6 min read

Superlogical: Mitchell Hashimoto's Terminal Multiplexer for the AI Agent Era

Mitchell Hashimoto leaves Ghostty to a nonprofit and launches Superlogical — rebuilding terminal session infrastructure from the ground up for the age of AI coding agents.

Mitchell Hashimoto has a reliable pattern. He identifies a computing primitive that everyone takes for granted, rebuilds it from scratch with modern assumptions, and then watches the industry catch up. He did it with infrastructure-as-code at HashiCorp (Vagrant, Terraform, Vault — ultimately acquired by IBM for $6.4 billion). He did it with the terminal emulator itself when he built Ghostty. Now he is doing it again with the session layer that lives inside the terminal, through a new company called Superlogical.

The announcement landed on July 29, 2026. Within hours it was trending in developer circles, backed by Amplify Partners, Notable Capital, and a roster of investors including Patrick Collison, Guillermo Rauch, and Armon Dadgar (Hashimoto's own HashiCorp co-founder).

The Problem Nobody Talks About

If you have spent any time running AI coding agents — whether Claude Code, jcode, Cursor, or any other — you have hit the same silent failure: the session dies. A network hiccup disconnects an SSH session running a 20-minute build. An agent pipeline completes half its work, loses context, and fails silently. A developer on a laptop needs to hand off a running process to a desktop, but there is no concept of "this work" that survives the disconnect.

tmux and GNU Screen were built in an era when "terminal multiplexing" meant splitting a single SSH connection into multiple windows. That architecture — where the client and server constantly duplicate state — was a reasonable tradeoff in 2007. It is a serious liability in 2026, when AI agents can run dozens of parallel workloads across local machines, remote servers, CI sandboxes, and production systems simultaneously.

Superlogical's framing is precise: the missing computing primitive is a durable session around the work itself — one that provides persistent context, preserves history, and works transparently for both human developers and autonomous AI agents.

A Different Architecture

Traditional multiplexers (tmux, Zellij, GNU Screen) share a fundamental architectural decision: they sit between the terminal and the shell, maintaining their own rendering state on the server while synchronizing a copy to the client. Every keystroke triggers a reconciliation loop. The performance overhead is measurable, and the duplication creates subtle bugs when client and server drift.

Superlogical takes the opposite approach. Clients send input to servers — similar in structure to SSH — and servers own the persistent state entirely. But the client is not thin: it is described as a "very smart, high-functioning, compliant client." The technical foundation is libghostty, the GPU-accelerated terminal rendering library that Hashimoto extracted from Ghostty and transferred (along with the Ghostty project itself) to a nonprofit in 2025.

This means:

  • No state duplication. The server is authoritative; clients render locally from server events.
  • True session persistence. Close your laptop, reconnect from your phone or a web browser, and the session is exactly where you left it — including the scrollback, running processes, and agent outputs.
  • Native multi-client. Multiple people (or agents) can connect to the same session simultaneously, each with their own high-quality rendering.

Initial client support covers macOS, web, and iOS. Beta access is via newsletter signup at superlogical.com.

Three Steps, One Vision

Superlogical has published a three-phase roadmap:

  1. Build an excellent multiplexer — the terminal infrastructure product shipping now.
  2. Make everything composable — expose the session layer as primitives that developers, tools, and agents can build on.
  3. Ensure safety and production operability — extend the concept to production systems, not just local development.

The third phase is where the larger bet becomes visible. Hashimoto is describing "the multiplexer for all work" — a unified session that spans local interactive development, CI/CD automation, agentic pipelines, and production systems. The terminal is infrastructure's lowest common denominator, present from the developer's laptop all the way to the production server. Building at that layer means every tool above it gets durable sessions for free.

The "No AI" Angle

One of the most discussed aspects of the announcement was investor Prasenjit Sarkar's framing on X: $10M seed to build a terminal multiplexer with no AI. In a moment when every developer tool is racing to bolt on an AI chat interface, Superlogical is explicitly building infrastructure-first.

This is not an anti-AI stance. It is a layering argument. Agent workloads break on flimsy session infrastructure — that is a terminal problem, not an AI problem. Tools like jcode's Rust agent harness and other agentic frameworks are only as reliable as the session layer beneath them. Superlogical's bet is that fixing the foundation unlocks everything above it.

For developers already experimenting with parallel terminal sessions for AI coding agents, Superlogical offers a purpose-built replacement for the tmux workarounds most teams are currently stitching together by hand.

The Team

The founding team reunites several HashiCorp alumni:

  • Mitchell Hashimoto — HashiCorp co-founder, creator of Vagrant, Terraform, Vault, and Ghostty
  • Jack Pearkes — HashiCorp's first employee and former VP of Engineering
  • Alasdair Monk — Design lead at Vercel, Poolside, and HashiCorp
  • Hector Simpson — Designer of agentic experiences at Poolside

Amplify's Lenny Pruss summarized the investment thesis in a single sentence: the team has "elite taste in crafting the right new developer primitives."

Why This Matters

The pattern from HashiCorp is instructive. Vagrant didn't just make virtual machines easier — it changed how the entire industry thought about reproducible development environments. Terraform didn't just automate cloud provisioning — it made infrastructure a first-class software artifact. Each time, the primitive Hashimoto rebuilt became so foundational that alternatives became legacy.

The session layer for human + agent work is genuinely unbounded in 2026. Nobody has solved persistent, composable, multi-participant work sessions at the terminal level. If Superlogical executes on even the first phase well, it becomes the default multiplexer for developers running AI agent pipelines. If it executes on all three phases, it becomes infrastructure for the agentic software era the same way tmux became infrastructure for distributed server management — except built for a world where agents and humans share the same workspace.

Watch the beta closely.