Install
System requirements
Section titled “System requirements”| Requirement | macOS | Windows | Linux |
|---|---|---|---|
| OS version | macOS 12+ (Monterey) | Windows 10+ | A modern distro with a graphical environment |
| Architecture | Apple Silicon (arm64) and Intel (x86_64) | x86_64 | x86_64 |
| Disk space | ~200 MB for the app + space for worktrees | ~200 MB | ~200 MB |
| Git | Required | Required | Required |
Download
Section titled “Download”Download the latest release from GitHub Releases.
- macOS: Download the
.dmg, open it, and drag Control Center to Applications. These builds aren’t signed with a paid Apple Developer certificate, so on first launch right-click the app → Open (or System Settings → Privacy & Security → Open Anyway). - Windows: Download the
.exeinstaller and run it. Windows may show a SmartScreen warning for unsigned builds — click More info then Run anyway. - Linux: Download the AppImage, make it executable (
chmod +x), and run it — or extract the.tar.gzbundle.
On macOS, if Gatekeeper reports that Control Center is “damaged and can’t be opened”, that’s the quarantine flag macOS adds to apps downloaded outside the App Store — not actual damage. Clear it, then reopen:
xattr -dr com.apple.quarantine "/Applications/Control Center.app"Agent CLI setup
Section titled “Agent CLI setup”Control Center dispatches agents through CLI backends. Install at least one:
- Claude Code (
claude):npm install -g @anthropic-ai/claude-code - Codex CLI (
codex):npm install -g @openai/codex - Pi (
pi): Install per the Pi documentation
Control Center auto-detects installed CLIs in your PATH. You can also register custom adapters in Settings → Adapters.
GitHub authentication
Section titled “GitHub authentication”Control Center needs a GitHub personal access token (PAT) with these scopes:
repo— full repository accessread:org— organization membership
Create one at GitHub Settings → Developer settings → Personal access tokens.
If you have the gh CLI installed and authenticated (gh auth login), Control Center detects and uses it automatically.
Verify your setup
Section titled “Verify your setup”After launching Control Center:
- The onboarding flow walks you through GitHub auth and workspace creation.
- Open Settings → Adapters to verify your agent CLIs were detected.
- Open Settings → Repositories to add your first repo.
- Run Agent doctor from any agent’s context menu to diagnose environment issues.
Building from source
Section titled “Building from source”git clone https://github.com/SamuelAlev/control-center.gitcd control-centerflutter pub getflutter pub run build_runner build --delete-conflicting-outputsflutter run -d macos # or -d windows, -d linuxRequires Flutter 3.x with desktop support enabled.