macOS Setup
Running Delphi as a launchd agent on macOS.
Copy the plist
cp systemd/com.claudecommandcenter.main.plist ~/Library/LaunchAgents/
Load the agent
launchctl load ~/Library/LaunchAgents/com.claudecommandcenter.main.plist
Verify it's running
launchctl list | grep claudecommandcenter
Expected: a line with com.claudecommandcenter.main and a PID (not -).
View logs
Logs are written to logs/main.log in the project directory.
Unload (stop)
launchctl unload ~/Library/LaunchAgents/com.claudecommandcenter.main.plist
Reload after config changes
launchctl unload ~/Library/LaunchAgents/com.claudecommandcenter.main.plist
launchctl load ~/Library/LaunchAgents/com.claudecommandcenter.main.plist
The plist uses your local Python path. If you installed Python with Homebrew or pyenv, verify the path in the plist matches
which python3.