SUPERSET(1)

NAME

supersetIDE for the AI Agents Era - Run an army of Claude Code, Codex, etc. on your machine

SYNOPSIS

$brew install caddy

INFO

8.6k stars
651 forks
0 views

DESCRIPTION

IDE for the AI Agents Era - Run an army of Claude Code, Codex, etc. on your machine

README

Superset

The Terminal for Coding Agents

GitHub stars GitHub release License Twitter Discord


Download for macOS  •  Documentation  •  Changelog  •  Discord


Why Superset?

Superset is a turbocharged terminal that allows you to run any CLI coding agents along with the tools to 10x your development workflow.

  • Run multiple agents simultaneously without context switching overhead
  • Isolate each task in its own git worktree so agents don't interfere with each other
  • Monitor all your agents from one place and get notified when they need attention
  • Review changes quickly with built-in diff viewer and editor

Wait less, ship more.

Features

FeatureDescription
Parallel ExecutionRun 10+ coding agents simultaneously on your machine
Worktree IsolationEach task gets its own branch and working directory
Agent MonitoringTrack agent status and get notified when changes are ready
Built-in Diff ViewerInspect and edit agent changes without leaving the app
Workspace PresetsAutomate env setup, dependency installation, and more
Universal CompatibilityWorks with any CLI agent that runs in a terminal
Quick Context SwitchingJump between tasks as they need your attention
IDE IntegrationOpen any workspace in your favorite editor with one click

Supported Agents

Superset works with any CLI-based coding agent, including:

AgentStatus
Claude CodeFully supported
OpenAI Codex CLIFully supported
Cursor AgentFully supported
Gemini CLIFully supported
GitHub CopilotFully supported
OpenCodeFully supported
Any CLI agentWill work

If it runs in a terminal, it runs on Superset

Requirements

RequirementDetails
OSmacOS (Windows/Linux untested)
RuntimeBun v1.0+
Version ControlGit 2.20+
GitHub CLIgh
Caddycaddy (for dev server)

Getting Started

Quick Start (Pre-built)

Download Superset for macOS

Build from Source

Click to expand build instructions

1. Clone the repository

git clone https://github.com/superset-sh/superset.git
cd superset

2. Set up environment variables (choose one):

Option A: Full setup

cp .env.example .env
# Edit .env and fill in the values

Option B: Skip env validation (for quick local testing)

cp .env.example .env
echo 'SKIP_ENV_VALIDATION=1' >> .env

3. Set up Caddy (reverse proxy for Electric SQL streams):

# Install caddy: brew install caddy (macOS) or see https://caddyserver.com/docs/install
cp Caddyfile.example Caddyfile

4. Install dependencies and run

bun install
bun run dev

5. Build the desktop app

bun run build
open apps/desktop/release

Keyboard Shortcuts

All shortcuts are customizable via Settings > Keyboard Shortcuts (⌘/). See full documentation.

Workspace Navigation

ShortcutAction
⌘1-9Switch to workspace 1-9
⌘⌥↑/↓Previous/next workspace
⌘NNew workspace
⌘⇧NQuick create workspace
⌘⇧OOpen project

Terminal

ShortcutAction
⌘TNew tab
⌘WClose pane/terminal
⌘DSplit right
⌘⇧DSplit down
⌘KClear terminal
⌘FFind in terminal
⌘⌥←/→Previous/next tab
Ctrl+1-9Open preset 1-9

Layout

ShortcutAction
⌘BToggle workspaces sidebar
⌘LToggle changes panel
⌘OOpen in external app
⌘⇧CCopy path

Configuration

Configure workspace setup and teardown in .superset/config.json. See full documentation.

{
  "setup": ["./.superset/setup.sh"],
  "teardown": ["./.superset/teardown.sh"]
}
OptionTypeDescription
setupstring[]Commands to run when creating a workspace
teardownstring[]Commands to run when deleting a workspace

Example setup script

#!/bin/bash
# .superset/setup.sh

Copy environment variables

cp ../.env .env

Install dependencies

bun install

Run any other setup tasks

echo "Workspace ready!"

Scripts have access to environment variables:

  • SUPERSET_WORKSPACE_NAME — Name of the workspace
  • SUPERSET_ROOT_PATH — Path to the main repository

Internal Dependency Overrides

For the internal mastracode fork/bundle workflow used by this repo, see docs/mastracode-fork-workflow.md.

Tech Stack

Electron React TailwindCSS Bun Turborepo Vite Biome Drizzle ORM Neon tRPC

Contributing

We welcome contributions! If you have a suggestion that would make Superset better:

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

You can also open issues for bugs or feature requests.

See CONTRIBUTING.md for detailed instructions and code of conduct.

Community

Join the Superset community to get help, share feedback, and connect with other users:

Team

Avi Twitter Kiet Twitter Satya Twitter

License

Distributed under the Apache 2.0 License. See LICENSE.md for more information.

SEE ALSO

clihub3/4/2026SUPERSET(1)