This is the starter project for Conductor, a macOS app for running multiple coding agents in parallel in isolated git worktree workspaces.
The app itself is a small React + TypeScript + Vite project. It gives new Conductor workspaces something quick to install, run, edit, review, and ship.
Conductor creates each workspace as its own git worktree and branch. The checked-in conductor.json tells Conductor how to prepare and run this starter app:
{
"scripts": {
"setup": "npm install",
"run": "npm run dev"
}
}When you create a workspace, Conductor runs the setup script from the workspace directory. When you click Run, Conductor starts the Vite dev server.
Install dependencies:
npm installStart the dev server:
npm run devBuild for production:
npm run buildRun lint checks:
npm run lintsrc/App.tsxcontains the starter app UI and interactions.src/App.cssandsrc/index.csscontain the app styling.conductor.jsoncontains the shared Conductor workspace scripts..context/is available in Conductor workspaces for gitignored notes and handoff files between agents.