superset-sh / superset
- воскресенье, 1 марта 2026 г. в 00:00:05
IDE for the AI Agents Era - Run an army of Claude Code, Codex, etc. on your machine
Superset is a turbocharged terminal that allows you to run any CLI coding agents along with the tools to 10x your development workflow.
Wait less, ship more.
| Feature | Description |
|---|---|
| Parallel Execution | Run 10+ coding agents simultaneously on your machine |
| Worktree Isolation | Each task gets its own branch and working directory |
| Agent Monitoring | Track agent status and get notified when changes are ready |
| Built-in Diff Viewer | Inspect and edit agent changes without leaving the app |
| Workspace Presets | Automate env setup, dependency installation, and more |
| Universal Compatibility | Works with any CLI agent that runs in a terminal |
| Quick Context Switching | Jump between tasks as they need your attention |
| IDE Integration | Open any workspace in your favorite editor with one click |
Superset works with any CLI-based coding agent, including:
| Agent | Status |
|---|---|
| Claude Code | Fully supported |
| OpenAI Codex CLI | Fully supported |
| Cursor Agent | Fully supported |
| Gemini CLI | Fully supported |
| GitHub Copilot | Fully supported |
| OpenCode | Fully supported |
| Any CLI agent | Will work |
If it runs in a terminal, it runs on Superset
| Requirement | Details |
|---|---|
| OS | macOS (Windows/Linux untested) |
| Runtime | Bun v1.0+ |
| Version Control | Git 2.20+ |
| GitHub CLI | gh |
| Caddy | caddy (for dev server) |
1. Clone the repository
git clone https://github.com/superset-sh/superset.git
cd superset2. Set up environment variables (choose one):
Option A: Full setup
cp .env.example .env
# Edit .env and fill in the valuesOption B: Skip env validation (for quick local testing)
cp .env.example .env
echo 'SKIP_ENV_VALIDATION=1' >> .env3. 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 Caddyfile4. Install dependencies and run
bun install
bun run dev5. Build the desktop app
bun run build
open apps/desktop/releaseAll shortcuts are customizable via Settings > Keyboard Shortcuts (⌘/). See full documentation.
| Shortcut | Action |
|---|---|
⌘1-9 |
Switch to workspace 1-9 |
⌘⌥↑/↓ |
Previous/next workspace |
⌘N |
New workspace |
⌘⇧N |
Quick create workspace |
⌘⇧O |
Open project |
| Shortcut | Action |
|---|---|
⌘T |
New tab |
⌘W |
Close pane/terminal |
⌘D |
Split right |
⌘⇧D |
Split down |
⌘K |
Clear terminal |
⌘F |
Find in terminal |
⌘⌥←/→ |
Previous/next tab |
Ctrl+1-9 |
Open preset 1-9 |
| Shortcut | Action |
|---|---|
⌘B |
Toggle workspaces sidebar |
⌘L |
Toggle changes panel |
⌘O |
Open in external app |
⌘⇧C |
Copy path |
Configure workspace setup and teardown in .superset/config.json. See full documentation.
{
"setup": ["./.superset/setup.sh"],
"teardown": ["./.superset/teardown.sh"]
}| Option | Type | Description |
|---|---|---|
setup |
string[] |
Commands to run when creating a workspace |
teardown |
string[] |
Commands to run when deleting a workspace |
#!/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 workspaceSUPERSET_ROOT_PATH — Path to the main repositoryFor the internal mastracode fork/bundle workflow used by this repo, see docs/mastracode-fork-workflow.md.
We welcome contributions! If you have a suggestion that would make Superset better:
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)You can also open issues for bugs or feature requests.
See CONTRIBUTING.md for detailed instructions and code of conduct.
Join the Superset community to get help, share feedback, and connect with other users:
Distributed under the Apache 2.0 License. See LICENSE.md for more information.