Open Source · v0.7.0

Command your
AI Coding Agents.

The ultimate open source cockpit for Agentic Engineering.

panes / feat/error-handling
Add error handling to the git push command with retry logic.
Codex
I'll add robust error handling with exponential backoff retry.
src/git/repo.rs
pub async fn push_with_retry(&self) {
  for attempt in 0..3 {
    match self.push().await {
      Ok(_) => return,
      Err(e) => sleep(2.pow(attempt)),
    }
  }
}
Ask follow-up...
panes
~/panes cargo check
   Compiling panes v0.7.0
   Finished dev [unoptimized + debuginfo]
 
~/panes
feat/error-handling ↑1 ↓0
src/git/repo.rs M +
src/commands/git.rs M +
src/lib.rs A
Commit
Open Source — MIT Licensed
Built with Rust — Native speed
Privacy First — Local only
Engine Agnostic — Any LLM

Everything you need.
Nothing you don't.

Native Git Client

Full GUI for staging, committing, branching, and reviewing diffs. Manage your entire git workflow without leaving the cockpit.

Integrated Terminal

WebGL-powered xterm.js with persistent sessions, multi-tab support, and native PTY. Run dev servers, tests, anything.

Native Codex Integration

First-class support for OpenAI Codex via app-server protocol. Streaming chat, sandbox detection, model discovery, and approval flows — all built in.

Multi-Repo Workspaces

Open any folder, auto-detect nested repos. Manage monorepos and multi-service architectures with context-aware chat.

Local & Fast

Built with Rust and Tauri. Panes is a local-first application that starts instantly and respects your data privacy.

Engine Agnostic

Bring your own intelligence. Connect OpenAI, Anthropic, local models, or any coding agent. Switch models per conversation.

Three steps to liftoff.

1

Open a folder

Point Panes at any directory. It auto-detects git repos, scans your codebase, and sets up the workspace.

2

Chat with your agent

Stream AI responses with code blocks, diffs, and explanations. Watch your agent work in real-time.

3

Review & ship

Stage changes, review diffs, and commit with confidence. Full audit trail of every action your agent took.

Ready to take command?

Join developers who are shipping faster with AI agents. Free, open-source, forever.