module.exports = { apps: [ { name: 'officer', script: 'bun', args: 'start', watch: false, }, // The Anthropic credential proxy. Despite the old name (`officer-claude`) this process does NOT // run agents — it holds the proxy secret and forwards to api.anthropic.com. The process that runs // agents is `officer-agent` below. { name: 'officer-anthropic-proxy', script: 'bun', args: 'run src/servers/sidecar/claude/index.ts', watch: false, }, // The process that actually runs `claude`. It used to be spawned on demand by the main server, // which made every agent session a grandchild of `officer` and killed it on every restart. As a PM2 // peer it survives them. It resolves the owner from the database and the proxy secret from the // proxy's state file, so it needs nothing from `officer` in order to start. { name: 'officer-agent', script: 'bun', args: 'run src/servers/sidecar/claude/user-instance.ts', watch: false, }, { name: 'officer-opencode', script: 'bun', args: 'run src/servers/sidecar/opencode/index.ts', watch: false, }, { name: 'officer-email', script: 'bun', args: 'run src/servers/sidecar/email/index.ts', watch: false, }, { name: 'officer-pty', script: 'node', args: 'src/servers/api/terminal/pty-sidecar.mjs', watch: false, }, { name: 'officer-vnc', script: 'bun', args: 'run src/servers/sidecar/vnc/index.ts', watch: false, }, { name: 'officer-music', script: 'bun', args: 'run src/servers/sidecar/music/index.ts', watch: false, }, { name: 'officer-vault', script: 'bun', args: 'run src/servers/sidecar/vault/index.ts', watch: false, }, { name: 'officer-slskd', script: 'bun', args: 'run src/servers/sidecar/slskd/index.ts', watch: false, }, ], };