This is the starter project for Conductor, a macOS app for running multiple coding agents in parallel in isolated git worktree workspaces.
The app is intentionally tiny: one dependency-free index.html file plus a few static assets in public/. There is no install step, build step, package manager, framework, or dev server.
Conductor creates each workspace as its own git worktree and branch. The checked-in .conductor/settings.toml tells Conductor how to prepare and run this starter app:
"$schema" = "https://conductor.build/schemas/settings.repo.schema.json"
[scripts]
setup = "true"
run = "open index.html"When you create a workspace, setup succeeds immediately. When you click Run on macOS, Conductor opens the HTML file in your default browser.
Open the app directly:
open index.htmlEdit index.html, then refresh the browser.
index.htmlcontains the UI, styling, and interaction logic.public/contains static assets used by the page..conductor/settings.tomlcontains the shared Conductor workspace scripts..context/is available in Conductor workspaces for gitignored notes and handoff files between agents.