Conduit banner
conduit-cli conduit-cli

Conduit

AI community

Description

🖥️ Run a Team of AI Agents. In Your Terminal.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Conduit

Conduit is a keyboard-first interface for running coding agents inside git-backed workspaces. It ships as a Ratatui TUI and an optional local web UI, with support for Codex CLI, Claude Code, Gemini CLI, and OpenCode.

What You Get

  • Multi-agent sessions with up to 10 concurrent tabs
  • Git-backed workspaces using either worktree or full checkout mode
  • Session persistence, history restore, and external session import
  • Provider and model selection with Codex gpt-5.4 as the default
  • Build/Plan mode for Claude, Codex, and Gemini
  • Raw events view for inspecting agent traffic
  • Token usage, context tracking, and cost estimates in the status bar
  • Built-in themes plus VS Code theme migration
  • A local web app served by the same binary

Install

Requirements

On first launch, Conduit checks for `git` and at least one agent binary, then prompts for tool paths if they are missing.

Quick Install

curl -fsSL https://getconduit.sh/install | sh

Homebrew

brew install conduit-cli/tap/conduit

Build From Source

git clone https://github.com/conduit-cli/conduit.git
cd conduit
cargo build --release

The binary will be at `target/release/conduit`.

Usage

Start The TUI

conduit

Start The Web UI

conduit serve --host 127.0.0.1 --port 3000

The local web app is served from the same binary and defaults to `http://127.0.0.1:3000`.

Utility Commands

# Inspect how your terminal reports keys
conduit debug-keys

# Convert a VS Code theme into Conduit's TOML theme format
conduit migrate-theme path/to/theme.json --palette

Commo