Operate the Chorus daemon
Use this guide after you have verified a foreground daemon connection. The commands apply to the supported resident backends: Claude Code, Codex, and Kiro.
Choose what the daemon can access
Section titled “Choose what the daemon can access”Each --cwd registers one working directory as a separate target in Chorus:
chorus daemon \ --agent claude-code \ --cwd ~/work/project-a \ --cwd ~/work/project-b \ --chorus-onlyWith no --cwd, Chorus uses the directory where you start the command. Use repeatable
--browse-root options only when users need to choose directories below a broader root.
A browse root allows discovery; it does not register every directory as an online
connection.
When you fix a working directory for a project’s agent, that
path must be one the daemon serves — include it in this daemon’s cwds set so the fixed
directory resolves to an online connection.
Configure daemon.json
Section titled “Configure daemon.json”The daemon reads its settings from ~/.chorus/daemon.json — a single flat JSON file that
holds both the agent credential and the runtime options. It is written with 0600
(owner read/write only) using an atomic temp-file-plus-rename, so a crash mid-write never
leaves a truncated file. The path is fixed at ~/.chorus/daemon.json (resolved from your
home directory); there is no environment variable to relocate the file itself.
Fields
Section titled “Fields”| Field | Type | Meaning |
| --- | --- | --- |
| url | string | Chorus server URL. |
| apiKey | string | Agent API key (cho_…). |
| agentUuid | string | Authenticated agent UUID (informational). |
| agentName | string | Authenticated agent name (informational). |
| cwds | string[] | Working directories this daemon serves. Each path is one independent online connection. |
| browseRoots | string[] | Roots exposed to remote working-directory discovery. A browse root does not create a connection. |
| agent | string | Local backend to wake: "claude-code", "codex", or "kiro". |
| sigintTimeoutMs | number | Grace window (ms) after SIGINT before a woken agent is force-killed. Default 10000. |
A minimal file after chorus login plus chorus daemon install:
{ "url": "https://chorus.example.com", "apiKey": "cho_REDACTED", "agentUuid": "8a1c…", "agentName": "Build Agent", "cwds": ["/home/demo/work/project-a"], "browseRoots": ["/home/demo/work"], "agent": "claude-code", "sigintTimeoutMs": 10000}How the file is created
Section titled “How the file is created”chorus loginvalidates your URL and key, then writesurl,apiKey,agentUuid, andagentName.chorus daemon installadditionally writescwds,browseRoots, andagent(it prompts for the served directories and backend when they are not already set).- A first
chorus daemonrun on a terminal completes any missing credentials interactively and writes them.
How the file is updated
Section titled “How the file is updated”Every writer performs a shallow merge: the new fields are merged over whatever is
already on disk, and unrelated fields are preserved. Re-running chorus login refreshes
the credentials without clearing your cwds, agent, or sigintTimeoutMs; re-running
chorus daemon install updates the served set without discarding the credential. A
missing or corrupt file is treated as an empty object, so a re-login always produces a
valid file rather than failing.
Field, flag, and environment variable
Section titled “Field, flag, and environment variable”Each option can be supplied three ways. Precedence is flag, then environment variable,
then daemon.json, so a one-off flag or env override never has to be written to the file:
| Concern | daemon.json field | CLI flag | Environment variable |
| --- | --- | --- | --- |
| Server URL | url | --url | CHORUS_URL |
| API key | apiKey | --api-key | CHORUS_API_KEY |
| Working directories | cwds | --cwd (repeatable) | CHORUS_DAEMON_CWDS |
| Browse roots | browseRoots | --browse-root (repeatable) | CHORUS_DAEMON_BROWSE_ROOTS |
| Backend | agent | --agent | CHORUS_AGENT |
| SIGINT grace | sigintTimeoutMs | --sigint-timeout | CHORUS_DAEMON_SIGINT_TIMEOUT |
| Permission mode | (not persisted) | --yolo / --chorus-only | CHORUS_YOLO / CHORUS_CHORUS_ONLY |
The permission mode is deliberately not stored in daemon.json. Pass --chorus-only
(or set CHORUS_CHORUS_ONLY=1) at start time; the installed service captures
--chorus-only in its unit, not in the file.
Install the Linux service
Section titled “Install the Linux service”On Linux, install the verified configuration as a user service:
chorus daemon install \ --agent claude-code \ --cwd ~/work/project-a \ --chorus-onlyThe installer starts the service immediately and configures it to start when the user
logs in. Run chorus login first so the service can read the saved credential.
Use these commands for routine operation:
chorus daemon statuschorus daemon logschorus daemon restartchorus daemon stopchorus daemon uninstallAfter changing credentials, working directories, backend, or permission mode, reinstall or restart the service and verify the connection in Settings → Agents.
Run without a service
Section titled “Run without a service”For a short-lived connection, keep chorus daemon in the foreground. Detached mode is
also available:
chorus daemon -d --agent codex --cwd ~/work/project-a --chorus-onlyManage it with the same status, logs, restart, and stop commands. Do not combine
detached mode with a separately written process supervisor.
Check operating health
Section titled “Check operating health”Use both command-line and web status:
- Run
chorus daemon status. - Review recent output with
chorus daemon logs. - In Settings → Agents, confirm each expected working directory is Online.
- Start a small test session and confirm it targets the intended directory.
Logs can contain paths, prompts, and command output. Remove sensitive values before sharing them. For failures, continue with Troubleshoot agent connections.