Every coding agent.
One app.window.surface.workspace.app.
Codewit runs Claude Code, Codex, Cursor, Gemini, Grok, Kilo Code, OpenCode and Pi from a single desktop app — with chat, diffs, a real file editor and terminals. Bring your own subscription.
> Bring the agents you already use.
Codewit doesn't resell tokens or cap your quota. It auto-detects the provider CLIs on your machine and drives them directly.
- > No keys resold. No quota caps.
- > Switch models mid-thread.
- > Nothing leaves your machine.
A full IDE, built in
Stop alt-tabbing to another editor.
Codewit ships a real file explorer and an editable code editor — powered by Monaco, the same engine as VS Code. Browse the worktree, open files, edit and save without ever leaving the app.
1import { useEffect, useRef } from "react";
2import { ensureMonacoSetup } from "~/lib/monaco";
3
4export function DockEditorPane({ cwd }) {
5 const ref = useRef<HTMLDivElement>(null);
6
7 useEffect(() => {
8 const m = ensureMonacoSetup();
9 const editor = m.editor.create(ref.current!, {
10 automaticLayout: true,
11 minimap: { enabled: false },
12 });
13 return () => editor.dispose();
14 }, []);
15} - > Click a file in the tree to open it instantly
- > Edit + ⌘S to save — the agent sees your changes
- > Syntax highlighting for 40+ languages
Never leave the app
See and edit the code, right here.
Browse the worktree, open files in a real editor, read per-turn diffs, then commit or open a PR — without flipping to another IDE.
- > File explorer + editable Monaco editor
- > Per-turn & working-tree diffs
- > Commit, branch & open PRs
- > Isolate parallel work in git worktrees
DockEditorPane.tsx+177modelRegistry.ts+74readFile.ts+23FAQ
The practical bits,
answered.
A quick pass over setup, providers, parallel work, and how much control you keep while agents are running.
What is Codewit?
Do I need a new AI subscription?
What do I need installed before using it?
Can I run multiple tasks at the same time?
Does it fit into a normal Git workflow?
Does Codewit upload my code somewhere?
Code with every agent.>
Free and open source. macOS, Windows & Linux.