superset.sh: IDE to run parallel coding agents

superset.sh is a desktop app for running several AI coding agents at once, each in its own isolated workspace. It covers the same ground as Conductor, but also runs on Linux (Conductor is Mac-only as of August 2026). What it does Like other agentic IDEs, superset.sh is built around a few features specifically for modern agentic coding: Run multiple agents simultaneously Isolate each task in its own git worktree so agents don’t interfere with each other Monitor all agents from one place and get notified when they need attention Switch between LLM providers (Claude, Codex, and others) per task Why worktrees, not branches The core concept behind superset.sh — and tools like it — is the git worktree: a separate directory with its own files and branch, sharing the same repository history and remote as your main checkout. ...

August 12, 2026 · 3 min · Amir Hadifar

goose: open-source AI agent harness

goose is an open-source AI agent that wraps an LLM in a loop of tool calls, so the model can actually do things rather than only describe them. Its own docs put it this way: goose, an open source AI Agent, builds upon the basic interaction framework of Large Language Models (LLMs), which primarily functions as a text-based conversational interface. It processes text input and generates text output. This “text in, text out” approach is enhanced with tool integrations, which allows the AI agent to complete tasks, creating goose. ...

August 3, 2026 · 3 min · Amir Hadifar

Conductor: IDE to run parallel coding agents

Conductor is a desktop app for running several AI coding agents in parallel on the same project. Instead of driving one agent at a time, you spin up multiple agents that each work independently and hand you the results to review. What it does Conductor connects to your AI provider — Claude, Codex, and others — and lets you launch multiple agents to work on your project at once. Each agent runs in its own git worktree, so their changes stay isolated from one another. When an agent finishes, its worktree makes it easy to review the diff, integrate the work, and push it to git. ...

July 17, 2026 · 1 min · Amir Hadifar

Tools landscape

A quick comparison of tools people use for vibe-coding and agentic coding. Fill in your own experience/notes as you try each one. Tool Type Runs where Notes Official site Claude Code CLI / IDE agent Terminal, VS Code, JetBrains Deep agentic loop, tool use, subagents, hooks, MCP support claude.com/claude-code Cursor IDE (fork of VS Code) Desktop Agent mode, inline edits, codebase-aware chat cursor.com GitHub Copilot / Copilot Workspace IDE extension VS Code, JetBrains, GitHub.com Autocomplete + chat + task-level “workspace” planning github.com/features/copilot Aider CLI Terminal Open-source, git-native, works with many model backends aider.chat Windsurf IDE Desktop “Cascade” agent flow, multi-file edits windsurf.com Devin Autonomous agent Cloud sandbox Longer-running autonomous tasks, less interactive devin.ai Conductor IDE Desktop (macOS) Runs multiple agents in parallel, each in its own git worktree conductor.build superset.sh IDE Desktop (macOS, Linux) Conductor alternative with Linux support; parallel agents in isolated worktrees, notifications, skills/hooks docs.superset.sh goose CLI / desktop agent Terminal, Desktop Open-source, MCP-based extensions, subagents, recipes, scheduled runs goose-docs.ai

July 16, 2026 · 1 min · Amir Hadifar