ClaudyBro: Native macOS Terminal for Claude Code Workflows

✍️ OpenClawRadar📅 Published: March 23, 2026🔗 Source
ClaudyBro: Native macOS Terminal for Claude Code Workflows
Ad

What ClaudyBro Is

ClaudyBro is a native macOS terminal application purpose-built for Claude Code workflows. It's a lightweight 3.5 MB Swift app that wraps SwiftTerm without Electron or web views, designed to address specific friction points developers encounter when using Claude Code in standard terminals.

Key Features

  • Image paste: Copy a screenshot, press Cmd+V, and ClaudyBro detects image data on the clipboard, saves it to a temporary file, and injects the path into your prompt automatically.
  • Process inspector: See every process Claude has spawned with name, PID, memory usage, and whether it's an MCP server. Access via the child count in the status bar.
  • Orphan cleanup: Node processes that outlive their tool call are detected after 30 seconds of idle time. Kill them individually or in bulk, with MCP servers correctly excluded from cleanup.
  • Smart MCP management: Duplicate MCP servers are auto-killed, and all MCP servers terminate when Claude exits, preventing phantom node processes.
  • Tabs: Supports Cmd+T/W, Cmd+1..9 shortcuts with directory shown in tab title and Terminal.app-style tab bar.
  • Drag & drop: Drop image files directly onto the terminal to inject their path.
Ad

Performance Benchmarks

On Apple Silicon with idle shell:

ClaudyBroGhosttyWarp
Memory68 MB81 MB~250 MB
Disk3.5 MB62 MB326 MB
CPU idle0.0%0.0%~5%

With Claude running: ClaudyBro uses 82 MB vs Ghostty's 140 MB.

How It Works

The terminal spawns your login shell, and Claude is launched via toolbar buttons. This allows you to cd, run other commands, exit Claude and re-run without restarting the terminal. Process monitoring uses Darwin sysctl/proc_pidinfo directly without ps or shell exec.

Installation

  • Download DMG from GitHub releases
  • Or build from source: git clone + ./build.sh install

Requires macOS 13+ (Ventura). MIT licensed. Version 1.1.0 includes the new tab system, with Homebrew cask coming soon.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Developer builds .NET SaaS template generator with Claude Code, shares workflow insights
Tools

Developer builds .NET SaaS template generator with Claude Code, shares workflow insights

A developer open-sourced NETrock, a .NET 10 SaaS starter template with authentication, ORM, and background jobs, then built a client-side generator for it using Claude Code. The generator lets users pick features and download a working .zip project that stays in their browser.

OpenClawRadar
MemRosetta adds persistent memory to Claude Code with one command setup
Tools

MemRosetta adds persistent memory to Claude Code with one command setup

MemRosetta v0.2.4 provides Claude Code with cross-session memory via a single npm install command. The tool includes a MCP server with 6 memory tools, automatic session capture, and local SQLite storage that can be shared with Cursor.

OpenClawRadar
Claude Code skill combines DeepMind Aletheia and Anthropic harness approaches
Tools

Claude Code skill combines DeepMind Aletheia and Anthropic harness approaches

A Claude Code skill implements a Planner→Generator→Evaluator→Reviser pipeline that synthesizes DeepMind's Aletheia math research agent with Anthropic's multi-agent coding architecture, adding blind pre-analysis where the evaluator reasons about correct approaches before seeing candidate code.

OpenClawRadar
yoyo: Local MCP Server for Grounded Codebase Reads and Guarded Writes with Claude Code
Tools

yoyo: Local MCP Server for Grounded Codebase Reads and Guarded Writes with Claude Code

yoyo is an open-source local MCP server that provides coding agents like Claude Code with grounded repository reads and guarded writes across 16 languages, including Rust, Go, Python, and TypeScript. It prevents broken edits from silently landing by returning machine-readable guard_failure output and enabling retry_plan for targeted repairs.

OpenClawRadar