freshcrate
Skin:/
Home > MCP Servers > superset

superset

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

Why this rank:Strong adoptionRecent releaseHealthy release cadence

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

# Without this, Chromium rejects https://localhost:* with ERR_CERT_AUTHORITY_INVALID.
# Prompts for sudo once.
caddy trust

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.12.2## What's Changed * chore(desktop): bump version to 1.12.0 by @Kitenite in https://github.com/superset-sh/superset/pull/4970 * fix(desktop): decode terminal clipboard as UTF-8 (#4839, #4956) by @Kitenite in https://github.com/superset-sh/superset/pull/4983 * fix: solve #4939 โ€” right-click closing terminal/CLI tab by @Kitenite in https://github.com/superset-sh/superset/pull/4968 * fix(billing): keep invoice access after downgrade by @Kitenite in https://github.com/superset-sh/superset/pull/4995 *High6/3/2026
desktop-v1.12.1## What's Changed * chore(desktop): bump version to 1.11.3 by @Kitenite in https://github.com/superset-sh/superset/pull/4913 * Set up env for contributors by @saddlepaddle in https://github.com/superset-sh/superset/pull/4837 * fix(desktop): repair terminal preset launches by @sshresthh in https://github.com/superset-sh/superset/pull/4926 * fix: solve #4690 โ€” reuse existing Run tab instead of opening a new one by @Kitenite in https://github.com/superset-sh/superset/pull/4960 * feat(host-servHigh5/28/2026
desktop-v1.11.0## What's Changed * fix(chat): kill new-session message flicker (SUPER-753) by @justincrich in https://github.com/superset-sh/superset/pull/4791 * fix(desktop): Cmd+W in browser pane closes focused pane, not whole window by @justincrich in https://github.com/superset-sh/superset/pull/4783 * feat(mobile): add dev sign-in button (mirrors #4778) by @justincrich in https://github.com/superset-sh/superset/pull/4821 * release(sdk): cut alpha.11 + drop internal warnings from public create result byHigh5/22/2026
desktop-v1.9.5## What's Changed * chore(desktop): bump version to 1.9.4 (host-service 0.8.3 -> 0.8.4) by @saddlepaddle in https://github.com/superset-sh/superset/pull/4589 * fix(host-service): unblock v2Project.create slug exhaustion by @saddlepaddle in https://github.com/superset-sh/superset/pull/4586 * fix(host-service): bake NODE_ENV=production into release bundle by @saddlepaddle in https://github.com/superset-sh/superset/pull/4590 **Full Changelog**: https://github.com/superset-sh/superset/compare/deskHigh5/15/2026
desktop-v1.8.8## What's Changed * fix(desktop): return direct-lookup PR/issue regardless of state by @saddlepaddle in https://github.com/superset-sh/superset/pull/4190 * fix(desktop): reserve space for delete-dialog warning banner by @saddlepaddle in https://github.com/superset-sh/superset/pull/4191 * feat(cli/sdk/mcp): add workspaces update for renaming by @saddlepaddle in https://github.com/superset-sh/superset/pull/4189 * fix(desktop): stop new-project modal from closing on open by @saddlepaddle in httHigh5/8/2026
desktop-v1.8.3## What's Changed * chore(desktop): bump version to 1.8.1 by @saddlepaddle in https://github.com/superset-sh/superset/pull/4027 * feat(host-service): canonical workspaces.create + host_agent_configs (PR1) by @Kitenite in https://github.com/superset-sh/superset/pull/3893 * feat(desktop): swap v2 FilesTab to @pierre/trees by @Kitenite in https://github.com/superset-sh/superset/pull/3988 * feat(desktop): add icons to v2 changes and file context menus by @Kitenite in https://github.com/superset-High5/5/2026
desktop-v1.7.2## What's Changed * feat(desktop): indent workspaces under projects in v2 sidebar by @Kitenite in https://github.com/superset-sh/superset/pull/3835 * fix(desktop): derive v2 workspace locality from workspace.hostId, not joined v2Hosts by @saddlepaddle in https://github.com/superset-sh/superset/pull/3837 * fix(desktop): raise Chromium WebGL context cap to 256 by @Kitenite in https://github.com/superset-sh/superset/pull/3834 * feat(desktop): persist Electric collections to SQLite for offline lHigh4/29/2026
desktop-v1.5.9## What's Changed * feat(desktop): infer project name from folder on import by @Kitenite in https://github.com/superset-sh/superset/pull/3605 * fix(desktop): don't nuke host services on app update by @saddlepaddle in https://github.com/superset-sh/superset/pull/3620 * refactor(desktop): host-service detach โ€” rotation, perms, windowsHide, dev pipes by @Kitenite in https://github.com/superset-sh/superset/pull/3616 * fix(desktop): hide v2 workspace rows while destroy is in flight by @Kitenite in htHigh4/23/2026
desktop-v1.5.8## What's Changed * fix(desktop): wire v2 sidebar project settings to settings route by @Kitenite in https://github.com/superset-sh/superset/pull/3592 * docs(readme): add caddy trust step to setup by @Kitenite in https://github.com/superset-sh/superset/pull/3595 * fix(automations): deduplicationId separator for us-east-1 QStash by @saddlepaddle in https://github.com/superset-sh/superset/pull/3591 * fix(relay): terminal WS URL prefix + pin to one fly machine by @saddlepaddle in https://github.comHigh4/21/2026
desktop-canary**Internal Testing Build** This is an automated canary build from `main` branch. - Commit: 605c2ee496a14d7a3b08fc74a1aca26a1c765ee2 - Short SHA: 605c2ee49 - Built: 2026-04-21T18:49:09Z โš ๏ธ This build is for internal testing only and may be unstable. High4/21/2026
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.4## What's Changed * fix(desktop): make v2 right sidebar toggle reactive by @saddlepaddle in https://github.com/superset-sh/superset/pull/3421 * feat(desktop): v2 diff viewer opens in its own tab + collapsed tab/pane title resolution by @saddlepaddle in https://github.com/superset-sh/superset/pull/3420 * fix(desktop): allow hotkeys to trigger in editable content by @Kitenite in https://github.com/superset-sh/superset/pull/3418 * feat(desktop/hotkeys): unbound defaults + restore prev/next tab & woHigh4/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.5.2## What's Changed * chore(desktop): bump version to 1.5.1 by @Kitenite in https://github.com/superset-sh/superset/pull/3402 * fix(desktop): match VS Code terminal clipboard handling (originally by @AytuncYildizli) by @Kitenite in https://github.com/superset-sh/superset/pull/3415 **Full Changelog**: https://github.com/superset-sh/superset/compare/desktop-v1.5.1...desktop-v1.5.2 Medium4/13/2026
desktop-v1.5.1## What's Changed * chore(desktop): bump version to 1.5.0 by @Kitenite in https://github.com/superset-sh/superset/pull/3360 * feat(desktop): V2 workspace modal PR search improvements by @Kitenite in https://github.com/superset-sh/superset/pull/3356 * feat(host-service): v2 workspace creation fallback to origin/main by @Kitenite in https://github.com/superset-sh/superset/pull/3361 * feat(desktop): v2 workspace setup script execution by @Kitenite in https://github.com/superset-sh/superset/pull/335Medium4/13/2026
desktop-v1.5.0## What's Changed * chore(desktop): bump version to 1.4.7 by @Kitenite in https://github.com/superset-sh/superset/pull/3128 * feat(desktop): fast file search with VS Code fuzzy scorer by @saddlepaddle in https://github.com/superset-sh/superset/pull/3136 * chore(desktop): upgrade Electron 40.2.1 โ†’ 40.8.5 by @AviPeltz in https://github.com/superset-sh/superset/pull/3150 * feat(desktop): decouple terminalId from paneId by @Kitenite in https://github.com/superset-sh/superset/pull/3137 * Make GiMedium4/11/2026
cli-v0.1.0## What's Changed * fix(mcp): stop classifying devices as offline in list_devices by @saddlepaddle in https://github.com/superset-sh/superset/pull/3299 * feat(cli): standalone distribution with embedded host-service by @saddlepaddle in https://github.com/superset-sh/superset/pull/3298 * feat(desktop): Security setting to disable relay exposure of host service by @saddlepaddle in https://github.com/superset-sh/superset/pull/3304 * ci: auto-bump Homebrew formula on CLI release by @saddlepaddle in Medium4/9/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
desktop-v1.4.6## What's Changed * chore(desktop): bump version to 1.4.5 by @Kitenite in https://github.com/superset-sh/superset/pull/3026 * fix: solve #3028 โ€” forward DA1 query responses during shell init by @github-actions[bot] in https://github.com/superset-sh/superset/pull/3030 * feat(desktop): add sorting to resource usage popover by @Kitenite in https://github.com/superset-sh/superset/pull/3036 * fix(desktop): change close workspace shortcut to โŒ˜โ‡งโŒซ by @Kitenite in https://github.com/superset-sh/superMedium3/31/2026
desktop-v1.4.5## What's Changed * fix: solve #2960 โ€” PTY spawn failure leaves zombie sessions blocking new terminals by @github-actions[bot] in https://github.com/superset-sh/superset/pull/2963 * feat(marketing): add theme marketplace and desktop links by @Kitenite in https://github.com/superset-sh/superset/pull/2966 * desktop: make chat work in SKIP_ENV_VALIDATION mode by @Kitenite in https://github.com/superset-sh/superset/pull/2967 * feat(desktop): add CLOSE_WORKSPACE hotkey and context menu delete optMedium3/30/2026
desktop-v1.4.4## What's Changed * chore(desktop): bump version to 1.4.3 by @Kitenite in https://github.com/superset-sh/superset/pull/2924 * fix(host-service): add CORS lockdown + PSK auth for local host-service by @saddlepaddle in https://github.com/superset-sh/superset/pull/2927 * fix(desktop): hot fix for worktree deletion (still need to refactor) by @AviPeltz in https://github.com/superset-sh/superset/pull/2929 **Full Changelog**: https://github.com/superset-sh/superset/compare/desktop-v1.4.3...desktop-vMedium3/27/2026
desktop-v1.4.3## What's Changed * fix(desktop): restore native text editing shortcuts in chat and auto-focus on pane nav by @michalkopanski in https://github.com/superset-sh/superset/pull/2676 * feat(desktop): cmd-click file paths opens in external editor by @saddlepaddle in https://github.com/superset-sh/superset/pull/2903 * chore(desktop): bump version to 1.4.1 by @Kitenite in https://github.com/superset-sh/superset/pull/2905 * feat(desktop): configurable light/dark themes for system mode by @Roshvan inMedium3/27/2026
desktop-v1.4.1## What's Changed * chore(desktop): bump version to 1.4.0 by @AviPeltz in https://github.com/superset-sh/superset/pull/2881 * feat(marketing): add status page link to footer by @AviPeltz in https://github.com/superset-sh/superset/pull/2884 * fix: prevent user message overflow on long code blocks by @michalkopanski in https://github.com/superset-sh/superset/pull/2751 * fix(desktop): reduce review tab GitHub polling by @Kitenite in https://github.com/superset-sh/superset/pull/2873 * fix(desktop): Medium3/26/2026
desktop-v1.4.0## What's Changed * fix(desktop): prevent webview from swallowing mosaic drag events by @kirankunigiri in https://github.com/superset-sh/superset/pull/2772 * chore(desktop): bump version to 1.3.2 by @Kitenite in https://github.com/superset-sh/superset/pull/2798 * fix(desktop): remove input shadows and add Cmd+Enter to workspace modal by @AviPeltz in https://github.com/superset-sh/superset/pull/2805 * Add subprocessors page to marketing site by @saddlepaddle in https://github.com/superset-sh/supeMedium3/25/2026
desktop-v1.3.2## What's Changed * chore(desktop): bump version to 1.3.1 by @Kitenite in https://github.com/superset-sh/superset/pull/2765 * docs: update weekly changelog with screenshots and refinements by @Kitenite in https://github.com/superset-sh/superset/pull/2792 * fix(desktop): restore changes sidebar base diff for sourced workspaces by @Kitenite in https://github.com/superset-sh/superset/pull/2790 * fix: solve #2791 โ€” revert emoji font injection from terminal font stack by @github-actions[bot] in hMedium3/23/2026
desktop-v1.3.1## What's Changed * fix(desktop): set default open-in-app to Finder for v2 workspaces by @saddlepaddle in https://github.com/superset-sh/superset/pull/2737 * chore(desktop): bump version to 1.3.0 by @Kitenite in https://github.com/superset-sh/superset/pull/2736 * feat(desktop): make CMD+R reload configurable in keyboard shortcuts by @kirankunigiri in https://github.com/superset-sh/superset/pull/2716 * Stop command for run button by @Kitenite in https://github.com/superset-sh/superset/pull/27Medium3/23/2026
desktop-v1.3.0## What's Changed * chore(desktop): remove Outlit analytics (fixes #2577) by @vincent067 in https://github.com/superset-sh/superset/pull/2597 * chore(desktop): bump version to 1.2.4 by @Kitenite in https://github.com/superset-sh/superset/pull/2696 * marketing: refresh compare pages and add compare update workflow by @Kitenite in https://github.com/superset-sh/superset/pull/2699 * refactor(desktop): consolidate and expand project color selector by @Kitenite in https://github.com/superset-sh/sLow3/22/2026
desktop-v1.2.4## What's Changed * chore: add run command to .superset/config.json by @Kitenite in https://github.com/superset-sh/superset/pull/2647 * fix(desktop): presets menu stays open on unpin by @vivishko in https://github.com/superset-sh/superset/pull/2649 * chore(desktop): bump version to 1.2.3 by @Kitenite in https://github.com/superset-sh/superset/pull/2648 * feat(desktop): add autosave for setup/teardown scripts by @AviPeltz in https://github.com/superset-sh/superset/pull/2644 * fix(api): updatLow3/21/2026
desktop-v1.2.3## What's Changed * chore(desktop): bump version to 1.2.2 by @Kitenite in https://github.com/superset-sh/superset/pull/2628 * feat(desktop): add project run commands by @kirankunigiri in https://github.com/superset-sh/superset/pull/2511 * fix(desktop): symlink as a file by @Ffinnis in https://github.com/superset-sh/superset/pull/2634 * fix(desktop): unknown icon for ts/js files by @Ffinnis in https://github.com/superset-sh/superset/pull/2622 * feat(desktop): add scroll to the first change bLow3/20/2026
desktop-v1.2.2## What's Changed * chore(desktop): bump version to 1.2.1 by @Kitenite in https://github.com/superset-sh/superset/pull/2582 * Fix v1 workspace drag back to project root by @Kitenite in https://github.com/superset-sh/superset/pull/2584 * fix(desktop): normalize mcp workspace list payload by @Kitenite in https://github.com/superset-sh/superset/pull/2530 * fix(desktop): close terminal tab on clean shell exit by @Roshvan in https://github.com/superset-sh/superset/pull/2583 * feat: consolidate pLow3/20/2026
desktop-v1.2.1## What's Changed * refactor(chat): collapse chat-mastra into chat by @saddlepaddle in https://github.com/superset-sh/superset/pull/2552 * docs: weekly changelog - 2026-03-16 by @github-actions[bot] in https://github.com/superset-sh/superset/pull/2512 * chore(desktop): bump version to 1.2.0 by @Kitenite in https://github.com/superset-sh/superset/pull/2532 * fix: align remaining license metadata and copy with ELv2 by @john-a-zoidburg in https://github.com/superset-sh/superset/pull/2560 * Add Pi aLow3/18/2026
desktop-v1.2.0## What's Changed * chore(desktop): bump version to 1.1.7 by @AviPeltz in https://github.com/superset-sh/superset/pull/2461 * feat(desktop): SUPER-362 V2 workspace sidebar + modal + projects by @AviPeltz in https://github.com/superset-sh/superset/pull/2399 * feat(desktop): replace font text input with searchable dropdown, fix broken font loading by @Roshvan in https://github.com/superset-sh/superset/pull/2458 * fix(desktop): prevent pasted content from reverting in CodeMirror editor by @ishaLow3/17/2026
desktop-v1.1.7## What's Changed * chore(desktop): bump version to 1.1.6 by @Kitenite in https://github.com/superset-sh/superset/pull/2358 * Update changelog workspace screenshot by @Kitenite in https://github.com/superset-sh/superset/pull/2376 * SUPER-362: scaffold V2 workspace sidebar foundation by @AviPeltz in https://github.com/superset-sh/superset/pull/2348 * Add shortcut to equalize pane splits by @AviPeltz in https://github.com/superset-sh/superset/pull/2381 * feat: v2 projects/workspaces/devices schemaLow3/13/2026
desktop-v1.1.6## What's Changed * fix(ui): remove rounded borders from CommandItem list items by @AviPeltz in https://github.com/superset-sh/superset/pull/2339 * chore(desktop): bump version to 1.1.5 by @Kitenite in https://github.com/superset-sh/superset/pull/2341 * docs: weekly changelog - 2026-03-09 by @github-actions[bot] in https://github.com/superset-sh/superset/pull/2281 * Revert "fix(terminal): auto-close terminal pane on shell exit" by @Kitenite in https://github.com/superset-sh/superset/pull/2343 * Low3/11/2026
desktop-v1.1.5## What's Changed * chore(desktop): bump version to 1.1.4 by @Kitenite in https://github.com/superset-sh/superset/pull/2308 * fix(desktop): handle worktree imports in branches tab by @Kitenite in https://github.com/superset-sh/superset/pull/2310 * feat(desktop): unify workspace filesystem services by @Kitenite in https://github.com/superset-sh/superset/pull/2268 * feat(desktop): support PR URLs in new workspace modal by @AviPeltz in https://github.com/superset-sh/superset/pull/2282 * feat(desktoLow3/10/2026
desktop-v1.1.4## What's Changed * Website content typo by @Kitenite in https://github.com/superset-sh/superset/pull/2247 * chore(desktop): bump version to 1.1.3 by @Kitenite in https://github.com/superset-sh/superset/pull/2226 * fix(desktop): apply shell env to GitHub status checks by @Kitenite in https://github.com/superset-sh/superset/pull/2250 * fix(desktop): restore popover colors on new workspace modal by @saddlepaddle in https://github.com/superset-sh/superset/pull/2254 * Community section mobile oLow3/10/2026
desktop-v1.1.3## What's Changed * chore(desktop): bump version to 1.1.2 by @Kitenite in https://github.com/superset-sh/superset/pull/2203 * refactor(desktop): swap ChangesView icons to Codicons by @AviPeltz in https://github.com/superset-sh/superset/pull/2204 * fix(desktop): adjust new workspace modal styling by @saddlepaddle in https://github.com/superset-sh/superset/pull/2205 * fix(auth): gate member-added email to accepted invitations by @saddlepaddle in https://github.com/superset-sh/superset/pull/220Low3/8/2026
desktop-v1.1.2## What's Changed * chore(desktop): bump version to 1.1.1 by @Kitenite in https://github.com/superset-sh/superset/pull/2199 * Fix desktop file icon paths in packaged app by @Kitenite in https://github.com/superset-sh/superset/pull/2202 **Full Changelog**: https://github.com/superset-sh/superset/compare/desktop-v1.1.1...desktop-v1.1.2 Low3/7/2026
desktop-v1.1.1## What's Changed * chore(desktop): bump version to 1.1.0 by @Kitenite in https://github.com/superset-sh/superset/pull/2185 * fix(desktop): remove One Dark Pro built-in theme by @AviPeltz in https://github.com/superset-sh/superset/pull/2152 * fix(desktop): restore advanced workspace create options by @Kitenite in https://github.com/superset-sh/superset/pull/2192 * fix(desktop): restore create workspace prompt keyboard behavior by @Kitenite in https://github.com/superset-sh/superset/pull/2195 * fLow3/7/2026
desktop-v1.1.0## What's Changed * docs: weekly docs update (2026-02-25 + 2026-03-04) by @Kitenite in https://github.com/superset-sh/superset/pull/2133 * fix: solve #2127 protect terminal tab titles from masked input by @Kitenite in https://github.com/superset-sh/superset/pull/2132 * Add Droid wrapper hook support by @Kitenite in https://github.com/superset-sh/superset/pull/2135 * feat(desktop): show requested reviewers in workspace hover card by @AviPeltz in https://github.com/superset-sh/superset/pull/21Low3/7/2026
desktop-v1.0.7## What's Changed * chore(desktop): bump version to 1.0.6 by @Kitenite in https://github.com/superset-sh/superset/pull/2073 * feat(desktop): add pane context split actions for chat and browser by @Kitenite in https://github.com/superset-sh/superset/pull/2079 * fix(desktop): truncate long URLs in browser toolbar by @saddlepaddle in https://github.com/superset-sh/superset/pull/2081 * feat(desktop): support files and images in mastra chat by @saddlepaddle in https://github.com/superset-sh/superset/Low3/6/2026
desktop-v1.0.6## What's Changed * fix(electric-proxy): use Cloudflare CDN caching instead of manual Cache API by @saddlepaddle in https://github.com/superset-sh/superset/pull/1997 * fix(electric-proxy): use Cache API for cross-zone caching by @saddlepaddle in https://github.com/superset-sh/superset/pull/2001 * fix(electric-proxy): restore Cloudflare CDN caching for Electric by @saddlepaddle in https://github.com/superset-sh/superset/pull/2003 * fix(ui): disable smooth chat auto-scroll on resize by @Kitenite iLow3/5/2026
desktop-v1.0.5## What's Changed * chore(desktop): bump version to 1.0.4 by @Kitenite in https://github.com/superset-sh/superset/pull/1960 * feat(desktop): add Windsurf IDE to 'Open in' dropdown by @pyko in https://github.com/superset-sh/superset/pull/1966 * fix(chat-mastra): keep MCP servers disabled while injecting Superset MCP tools by @Kitenite in https://github.com/superset-sh/superset/pull/1969 * fix(desktop): apply shared branch sanitization to generated prefix by @Kitenite in https://github.com/superseLow3/3/2026
desktop-v1.0.4## What's Changed * chore(desktop): bump version to 1.0.3 by @Kitenite in https://github.com/superset-sh/superset/pull/1915 * feat(desktop): add Mastra prompt UI for questions, approvals, and plans by @Kitenite in https://github.com/superset-sh/superset/pull/1933 * fix(desktop): use interactive login shell for PATH resolution by @Kitenite in https://github.com/superset-sh/superset/pull/1940 * Desktop: enable resource monitor by default by @Kitenite in https://github.com/superset-sh/superset/pullLow3/2/2026
desktop-v1.0.3## What's Changed * fix(shared): ensure codex prompt payload isn't parsed as flags by @Kitenite in https://github.com/superset-sh/superset/pull/1910 * fix(desktop): improve new workspace modal UX by @AviPeltz in https://github.com/superset-sh/superset/pull/1912 * Allow Anthropic API keys for Mastra chat by @Kitenite in https://github.com/superset-sh/superset/pull/1905 * Add /hackathon raffle page to marketing site by @AviPeltz in https://github.com/superset-sh/superset/pull/1914 * feat(desktop):Low2/28/2026
desktop-v1.0.1## What's Changed * chore(desktop): bump version to 0.0.88 by @Kitenite in https://github.com/superset-sh/superset/pull/1842 * perf(desktop): reduce startup chat preload and title sync fanout by @Kitenite in https://github.com/superset-sh/superset/pull/1846 * Revert "fix(desktop): linkify terminal URLs across wrapped TUI lines" by @Kitenite in https://github.com/superset-sh/superset/pull/1850 * feat(desktop): clickable @file tags in Mastra chat user messages by @saddlepaddle in https://githuLow2/27/2026
desktop-v0.0.88## What's Changed * chore(desktop): bump version to 0.0.87 by @Kitenite in https://github.com/superset-sh/superset/pull/1833 * fix(desktop): replace all placeholder instances in notify-hook template by @zoumo in https://github.com/superset-sh/superset/pull/1837 **Full Changelog**: https://github.com/superset-sh/superset/compare/desktop-v0.0.87...desktop-v0.0.88 Low2/26/2026
desktop-v0.0.87## What's Changed * feat(desktop): improve chat tool mapping and expandable tool rows by @Kitenite in https://github.com/superset-sh/superset/pull/1820 * fix(chat-mastra): dedupe merged assistant fragments during streaming by @Kitenite in https://github.com/superset-sh/superset/pull/1821 * chore(desktop): bump version to 0.0.86 by @Kitenite in https://github.com/superset-sh/superset/pull/1819 * desktop: clarify preset launch copy for current tab vs new tab by @Kitenite in https://github.com/Low2/26/2026
desktop-v0.0.86## What's Changed * refactor(desktop): use gh flows for PR discovery, creation, and checkout by @Kitenite in https://github.com/superset-sh/superset/pull/1771 * Add OpenAI/Codex model provider support to chat by @Kitenite in https://github.com/superset-sh/superset/pull/1766 * fix(desktop): allow importing empty repos with unborn HEAD by @Kitenite in https://github.com/superset-sh/superset/pull/1773 * fix(ci): remove accidental gitlink causing checkout post-job git 128 warnings by @Kitenite iLow2/26/2026
desktop-v0.0.85## What's Changed * chore(desktop): bump version to 0.0.84 by @Kitenite in https://github.com/superset-sh/superset/pull/1731 * Remove navigate_to_workspace MCP tool by @Kitenite in https://github.com/superset-sh/superset/pull/1729 * fix(desktop): stabilize terminal bootstrap and initial command flow by @Kitenite in https://github.com/superset-sh/superset/pull/1734 * feat(chat): auto-generate titles server-side using BYOK credentials by @saddlepaddle in https://github.com/superset-sh/supersetLow2/25/2026
desktop-v0.0.84## What's Changed * fix(desktop): fix sidebar workspace hover controls layout drift by @saddlepaddle in https://github.com/superset-sh/superset/pull/1676 * docs: add missing Caddy setup to build-from-source instructions by @zeitlinger in https://github.com/superset-sh/superset/pull/1662 * Improve wrapper profile performance by @Kitenite in https://github.com/superset-sh/superset/pull/1674 * fix(desktop): fix sidebar workspace close button not clickable by @Kitenite in https://github.com/supersetLow2/24/2026
desktop-v0.0.83## What's Changed * feat(desktop): replace initial loading spinner with Superset logo by @Kitenite in https://github.com/superset-sh/superset/pull/1632 * chore(desktop): bump version to 0.0.82 by @Kitenite in https://github.com/superset-sh/superset/pull/1631 * feat(desktop): add clear status option to workspace context menu by @Kitenite in https://github.com/superset-sh/superset/pull/1633 * feat(desktop): add New Project page with empty, clone, and template tabs by @Kitenite in https://github.coLow2/22/2026
desktop-v0.0.82## What's Changed * fix(desktop): remove double border on first workspace tab by @saddlepaddle in https://github.com/superset-sh/superset/pull/1589 * chore(desktop): bump version to 0.0.81 by @Kitenite in https://github.com/superset-sh/superset/pull/1585 * feat(desktop): add macOS permissions settings page by @Kitenite in https://github.com/superset-sh/superset/pull/1587 * fix(desktop): open Changes header tooltips above toolbar by @saddlepaddle in https://github.com/superset-sh/superset/pulLow2/20/2026
desktop-v0.0.81## What's Changed * chore(desktop): bump version to 0.0.80 by @Kitenite in https://github.com/superset-sh/superset/pull/1558 * fix(desktop): enable CDP port in production so browser devtools can connect by @Kitenite in https://github.com/superset-sh/superset/pull/1564 * fix(desktop): request Apple Events permission upfront to prevent repeated macOS prompts by @Kitenite in https://github.com/superset-sh/superset/pull/1567 * fix(desktop): make addFileViewerPane respect file open mode setting bLow2/19/2026
desktop-v0.0.80## What's Changed * chore(desktop): bump version to 0.0.79 by @Kitenite in https://github.com/superset-sh/superset/pull/1544 * fix(desktop): prevent webview from capturing drag events during pane rearrangement by @Kitenite in https://github.com/superset-sh/superset/pull/1547 * Import worktree on create project by @Kitenite in https://github.com/superset-sh/superset/pull/1549 * fix(desktop): use deep links for auth on macOS, localhost callback on Linux by @AviPeltz in https://github.com/superset-Low2/18/2026
desktop-v0.0.79## What's Changed * feat(desktop): rename Existing tab to Import and add bulk import all by @Kitenite in https://github.com/superset-sh/superset/pull/1503 * chore(desktop): bump version to 0.0.78 by @Kitenite in https://github.com/superset-sh/superset/pull/1533 * fix(desktop): tree-kill all child processes on daemon restart by @Kitenite in https://github.com/superset-sh/superset/pull/1504 * fix(desktop): change default notifications port to avoid collisions by @Kitenite in https://github.com/supLow2/17/2026
desktop-v0.0.78## What's Changed * chore(desktop): bump version to 0.0.77 by @Kitenite in https://github.com/superset-sh/superset/pull/1498 * refactor(desktop): externalize port allocation to setup/teardown scripts by @Kitenite in https://github.com/superset-sh/superset/pull/1494 * fix(desktop): eliminate stale port data from dual-source race condition by @Kitenite in https://github.com/superset-sh/superset/pull/1497 * fix(setup): use real tabs in Caddyfile heredoc instead of literal \t by @Kitenite in https:/Low2/17/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-06-04
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-06-07
opentabsBrowser automation clicks buttons. OpenTabs calls APIs.main@2026-06-06
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-06-04
Ollama-Terminal-AgentAutomate shell tasks using a local Ollama model that plans, executes, and fixes commands without cloud or API dependencies.main@2026-06-04

More in MCP Servers

claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme
hyperframesWrite HTML. Render video. Built for agents.
claude-code-guideClaude Code Guide - Setup, Commands, workflows, agents, skills & tips-n-tricks go from beginner to power user!