What's wrong with this entry?
Install the Claude daemon as a persistent system service (launchd on macOS, systemd on Linux) so it runs automatically on boot and survives terminal closures.
claude daemon install # Install as a system service
claude daemon uninstall # Remove the system service
claude daemon start # Start the daemon
claude daemon stop # Stop the daemon
claude daemon restart # Restart the daemon
claude daemon status # Show daemon status and PID
claude daemon log # View daemon logs- On macOS, installs as a launchd agent (
com.anthropic.claude-daemon) - On Linux, installs as a systemd user unit with
Restart=alwaysand rate limiting (10 bursts per 60s) - The daemon manages all background workers: scheduled tasks, remote control servers, assistants, and heartbeat workers
- Hot-reloads
daemon.jsonconfiguration automatically (chokidar watcher with debounce) - Centralized OAuth token management — proactively refreshes tokens, broadcasts to workers via IPC
- If headless auth fails, writes
daemon-auth-status.jsonand sends a desktop notification promptingclaude auth login - Logs to
~/.claude/daemon.log - Idle exit: daemon shuts down after a configurable period with no clients (unless installed as a service)
Daemon service management (search for "Install service", "Uninstall service", "com.anthropic.claude-daemon", "daemon.status.json")
Strings lifted out of the shipped bundle, so the claim above can be checked against them.