freshcrate
Home > MCP Servers > superset

superset

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

Description

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

README

Superset

The Code Editor for AI Agents

GitHub starsGitHub releaseLicenseTwitter Discord


Orchestrate swarms of Claude Code, Codex, and more in parallel.
Works with any CLI agent. Built for local worktree-based development.


Download for macOS  •  Documentation  •  Changelog  •  Discord


Code 10x Faster With No Switching Cost

Superset orchestrates CLI-based coding agents across isolated git worktrees, with built-in terminal, review, and open-in-editor workflows.

  • 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 and edit changes quickly with the built-in diff viewer and editor
  • Open any workspace where you need it with one-click handoff to your editor or terminal

Wait less, ship more.

Features

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

Supported Agents

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

Agent Status
Amp Code Fully supported
Claude Code Fully supported
OpenAI Codex CLI Fully supported
Cursor Agent Fully supported
Gemini CLI Fully supported
GitHub Copilot Fully supported
OpenCode Fully supported
Pi Fully supported
Any CLI agent Will work

If it runs in a terminal, it runs on Superset

Requirements

Requirement Details
OS macOS (Windows/Linux untested)
Runtime Bun v1.0+
Version Control Git 2.20+
GitHub CLI gh
Caddy caddy (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

Shortcut Action
⌘1-9 Switch to workspace 1-9
āŒ˜āŒ„ā†‘/↓ Previous/next workspace
⌘N New workspace
āŒ˜ā‡§N Quick create workspace
āŒ˜ā‡§O Open project

Terminal

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

Layout

Shortcut Action
⌘B Toggle workspaces sidebar
⌘L Toggle changes panel
⌘O Open in external app
āŒ˜ā‡§C Copy path

Configuration

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

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

Mastra Dependencies

This repo uses the published upstream mastracode and @mastra/* packages directly. Avoid adding custom tarball overrides unless there is a repo-specific blocker.

Tech Stack

Electron React TailwindCSS Bun Turborepo Vite Biome Drizzle ORM Neon tRPC

Private by Default

  • Source Available — Full source is available on GitHub under Elastic License 2.0 (ELv2).
  • Explicit Connections — You choose which agents, providers, and integrations to connect.

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 Elastic License 2.0 (ELv2). See LICENSE.md for more information.

Release History

VersionChangesUrgencyDate
desktop-v1.5.6## What's Changed * chore(desktop): bump version to 1.5.5 by @saddlepaddle in https://github.com/superset-sh/superset/pull/3473 * feat(desktop): v2 review tab — PR info, checks, comments by @AviPeltz in https://github.com/superset-sh/superset/pull/3463 * fix(desktop): handle IME composition in new-workspace Enter handlers by @Kitenite in https://github.com/superset-sh/superset/pull/3486 * fix(desktop): prevent "workspace not found" flash after v2 workspace create by @Kitenite in https://githHigh4/18/2026
desktop-v1.5.5## What's Changed * fix(desktop): use native clipboard for copy path in v2 sidebar by @Kitenite in https://github.com/superset-sh/superset/pull/3462 * feat(desktop): close settings with Escape key by @Kitenite in https://github.com/superset-sh/superset/pull/3466 * feat(desktop/hotkeys): restore Cmd+Alt+Arrow for tab/workspace nav by @saddlepaddle in https://github.com/superset-sh/superset/pull/3472 **Full Changelog**: https://github.com/superset-sh/superset/compare/desktop-v1.5.4...desktHigh4/15/2026
desktop-v1.5.3## What's Changed * [codex] fix v1 split pane startup sizing by @Kitenite in https://github.com/superset-sh/superset/pull/3416 * feat(desktop): Cmd+Alt+Arrow moves focus between v2 panes by @saddlepaddle in https://github.com/superset-sh/superset/pull/3403 **Full Changelog**: https://github.com/superset-sh/superset/compare/desktop-v1.5.2...desktop-v1.5.3 High4/13/2026
desktop-v1.4.7## What's Changed * chore(desktop): bump version to 1.4.6 by @Kitenite in https://github.com/superset-sh/superset/pull/3042 * fix(security): pin axios to 1.14.0 to block supply chain attack by @Kitenite in https://github.com/superset-sh/superset/pull/3043 * [codex] Refactor agent registry and add custom agent CRUD groundwork by @Kitenite in https://github.com/superset-sh/superset/pull/2994 * [codex] fix(desktop): harden Codex native hook cleanup by @Kitenite in https://github.com/superset-shHigh4/3/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

recall-aiBuild and manage AI-driven workspaces using Next.js, React, and TypeScript with customizable UI and MIT licensing.main@2026-04-21
Awesome-Agent-Skills🧭 Discover and navigate AI Agent Skills with Awesome-Agent-Skills, your go-to resource for Claude, OpenAI, and MCP Servers.main@2026-04-21
better-notion-mcpMarkdown-first MCP server for Notion API - composite tools optimized for AI agentsv2.28.4
voratiqAgent ensembles to design, generate, and select the best code for every task.main@2026-04-21
nano-banana-2-aiDeliver high-speed 4K text-to-image generation with 5-character consistency using the open-source Gemini 3.1 Flash Image model.main@2026-04-21