Your agents'
control room

Watch every tool call. Steer active work. Approve the risky parts. One open-source workspace for Claude Code and Codex.

Cogpit dashboard showing live session monitoring, conversation timeline, and file changes panel

See. Understand. Control.

The instruments missing from a terminal-only workflow.

Observe

Live turns, tools, diffs, approvals, reasoning, and sub-agents.

Understand

Usage, limits, context, file impact, and agent progress.

Control

Steer, interrupt, approve, rewind, branch, and resume.

Interactive

The whole turn, in context

Expand the timeline to inspect reasoning, tool calls, results, and edits.

Youturn 1

Add a dark mode toggle to the settings page

Claudeturn 2
export function SettingsPage() {
  return (
    <div className="p-6">
      <h1>Settings</h1>
      <section>
        <h2>General</h2>
        {/* settings content */}
      </section>
    </div>
  );
}
- <h2>General</h2>
- {/* settings content */}
+ <h2>General</h2>
+ <div className="flex items-center justify-between">
+ <label>Dark Mode</label>
+ <Switch checked={isDark} onCheckedChange={toggleTheme} />
+ </div>

I found the settings page and the existing theme hook. Let me add the dark mode toggle.

Claudeturn 3

The sub-agent found that `useTheme` doesn't persist preferences yet. I'll wire it up to `useLocalStorage` so the dark mode setting persists across sessions.

Claudeturn 4

Done! I've added a dark mode toggle to the settings page with persistence. The toggle uses `useTheme` backed by `useLocalStorage` and all tests pass.

Built for agent-scale work

01

Live control

Stream, steer, interrupt, and resume active agent work.

02

Native approvals

Review command, file, network, and tool requests in context.

03

Goals & tasks

Track durable objectives, budgets, owners, and dependencies.

04

Usage clarity

See tokens, cache behavior, context, limits, and published costs.

05

File intelligence

Inspect per-edit and net diffs, then rewind when needed.

06

Sub-agents

Follow agent lifecycle, messages, results, and background work.

07

Worktrees

Connect sessions to branches, PRs, and parallel workspaces.

08

MCP & config

Control servers, skills, commands, workflows, and project rules.

Bring your agents into view

Use Claude Code, Codex, or both. Cogpit uses your existing CLI login.

Recommended

Download the app

macOS and Linux packages from GitHub Releases.

View releases →
From source

Run it locally

git clone https://github.com/gentritbiba/cogpit
cd cogpit && bun install
bun run dev