im_wower
·
2026-03-28
so.makefile.baa-claude-coded.plist
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<!--
4 Source template kept in the repo.
5 Default values target the formal mini claude-coded runtime at
6 /Users/george/code/baa-conductor.
7 Use scripts/runtime/install-claude-coded.sh to render the actual install copy.
8 launchd is responsible for auto-start and hard restart; claude-coded itself
9 manages Claude Code child health and reconnect with exponential backoff.
10-->
11<plist version="1.0">
12 <dict>
13 <key>Label</key>
14 <string>so.makefile.baa-claude-coded</string>
15
16 <key>WorkingDirectory</key>
17 <string>/Users/george/code/baa-conductor</string>
18
19 <key>EnvironmentVariables</key>
20 <dict>
21 <key>PATH</key>
22 <string>/opt/homebrew/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/george/.local/bin:/Users/george/bin</string>
23 <key>HOME</key>
24 <string>/Users/george</string>
25 <key>LANG</key>
26 <string>en_US.UTF-8</string>
27 <key>LC_ALL</key>
28 <string>en_US.UTF-8</string>
29 <key>BAA_NODE_ID</key>
30 <string>mini-main</string>
31 <key>BAA_LOGS_DIR</key>
32 <string>/Users/george/code/baa-conductor/logs</string>
33 <key>BAA_STATE_DIR</key>
34 <string>/Users/george/code/baa-conductor/state</string>
35 <key>BAA_CLAUDE_CODED_REPO_ROOT</key>
36 <string>/Users/george/code/baa-conductor</string>
37 <key>BAA_CLAUDE_CODED_LOGS_DIR</key>
38 <string>/Users/george/code/baa-conductor/logs/claude-coded</string>
39 <key>BAA_CLAUDE_CODED_STATE_DIR</key>
40 <string>/Users/george/code/baa-conductor/state/claude-coded</string>
41 <key>BAA_CLAUDE_CODED_LOCAL_API_BASE</key>
42 <string>http://127.0.0.1:4320</string>
43 <key>BAA_CLAUDE_CODED_CHILD_COMMAND</key>
44 <string>claude</string>
45 <key>BAA_CLAUDE_CODED_CHILD_CWD</key>
46 <string>/Users/george/code/baa-conductor</string>
47 <key>BAA_CLAUDE_CODED_EVENT_CACHE_SIZE</key>
48 <string>50</string>
49 <key>BAA_CLAUDE_CODED_TURN_TIMEOUT_MS</key>
50 <string>300000</string>
51 <key>HTTPS_PROXY</key>
52 <string>http://127.0.0.1:7890</string>
53 <key>HTTP_PROXY</key>
54 <string>http://127.0.0.1:7890</string>
55 <key>ALL_PROXY</key>
56 <string>socks5://127.0.0.1:7890</string>
57 </dict>
58
59 <key>ProgramArguments</key>
60 <array>
61 <string>/usr/bin/env</string>
62 <string>node</string>
63 <string>/Users/george/code/baa-conductor/apps/claude-coded/dist/index.js</string>
64 <string>start</string>
65 </array>
66
67 <key>ProcessType</key>
68 <string>Background</string>
69 <key>RunAtLoad</key>
70 <true/>
71 <key>KeepAlive</key>
72 <true/>
73 <key>ThrottleInterval</key>
74 <integer>10</integer>
75 <key>StandardOutPath</key>
76 <string>/Users/george/code/baa-conductor/logs/launchd/so.makefile.baa-claude-coded.out.log</string>
77 <key>StandardErrorPath</key>
78 <string>/Users/george/code/baa-conductor/logs/launchd/so.makefile.baa-claude-coded.err.log</string>
79 </dict>
80</plist>