← Hacker News

Show HN: Abralo – Free, easy way to run several Claude Code agents in one window

Hacker News · cwbuilds · July 8, 2026
A developer created Abralo, a lightweight Tauri desktop application that allows multiple Claude Code agents to run simultaneously in a single window, addressing limitations with terminal management and VS Code extensions that would crash when running more than three agents. The application displays agent processes side-by-side with improved readability and includes usage monitoring features with sparkline charts showing token consumption patterns. The tool is free for up to four concurrent agents, works on Windows, MacOS, and 64-bit Linux, and does not store user credentials or interaction data.

Detailed Analysis

Abralo represents a grassroots response to a genuine friction point that has emerged as Claude Code has matured into a daily-driver tool for developers: managing multiple concurrent AI coding agents without either drowning in terminal clutter or crashing one's machine with a heavier IDE integration. The tool, built with Tauri (a lightweight framework for desktop apps that uses web technologies but avoids the overhead of Electron), lets users run several Claude Code sessions side by side in a single window, with a visual layout designed to make it easy to spot which agent is stalled, awaiting input, or has completed a task. The creator, who says he uses Claude Code "for almost everything" including autonomous email-drafting and lead-research workflows, built the app after finding that split terminal panes were hard to monitor and that Anthropic's own VS Code extension, while visually superior, became unstable and resource-hungry once more than a few agents were running simultaneously.

The underlying problem Abralo addresses is a byproduct of how agentic coding tools are actually used in practice. Unlike a single chatbot conversation, Claude Code is increasingly deployed in parallel instances — one agent refactoring a module, another writing tests, another handling a documentation pass — with the human developer acting more like a supervisor triaging attention across a small swarm of workers than a programmer writing every line. This shift creates new interface demands that neither raw terminal multiplexing nor traditional single-focus IDE extensions were designed to handle well. Abralo's pitch — legibility of agent state, low resource overhead, and an at-a-glance signal for "which agent needs you right now" — speaks directly to the operational reality of running multi-agent workflows rather than single-agent chat sessions.

Notably, the tool also surfaces usage analytics tailored to Claude Code's specific rate-limit structure, including alerts as users approach their rolling 5-hour and weekly usage caps, with sparkline visualizations showing which agents are consuming the most tokens. This detail reflects a practical pain point for power users on Anthropic's subscription plans: because Claude Code usage is metered against time-boxed limits rather than simple per-message pricing, users running multiple parallel agents can burn through their allotment unpredictably, and a tool that helps forecast and attribute that consumption addresses a real cost-management need that Anthropic's own tooling has not fully solved.

Architecturally, Abralo is careful to position itself as a thin client rather than a competing service: it requires users to log in with their existing Claude Code account, claims not to store credentials or conversation data, and routes everything directly between the user and Anthropic. This design choice — free for up to four simultaneous agents — lowers the trust barrier for developers wary of third-party tools sitting between them and a paid AI subscription, and it reflects a broader pattern in the emerging ecosystem of unofficial tools built atop Claude Code's CLI and APIs. As agentic coding tools proliferate, a cottage industry of wrappers, dashboards, and orchestration layers is forming around them, mirroring the earlier wave of third-party clients and extensions that sprang up around ChatGPT and GitHub Copilot. Abralo's Show HN post is a small but telling data point in that trend: as foundation model companies like Anthropic focus on improving the underlying agent capabilities, independent developers are racing to fill the UX and workflow-management gaps that appear once those agents are deployed at scale in real, multi-threaded work.

Read original article →