-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcom.clawnify.agent-control-ui.plist
More file actions
52 lines (42 loc) · 1.39 KB
/
com.clawnify.agent-control-ui.plist
File metadata and controls
52 lines (42 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<!--
Launchd agent for @clawnify/agent-control-ui — auto-starts the local
static server on a Mac mini or any macOS host running OpenClaw.
Install:
cp packaging/launchd/com.clawnify.agent-control-ui.plist ~/Library/LaunchAgents/
launchctl load ~/Library/LaunchAgents/com.clawnify.agent-control-ui.plist
Stop / remove:
launchctl unload ~/Library/LaunchAgents/com.clawnify.agent-control-ui.plist
Logs:
tail -f /tmp/agent-control-ui.{out,err}.log
Adjust the ProgramArguments path if `npx` lives somewhere other than
/opt/homebrew/bin (Apple silicon) — /usr/local/bin on Intel Macs.
-->
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.clawnify.agent-control-ui</string>
<key>ProgramArguments</key>
<array>
<string>/opt/homebrew/bin/npx</string>
<string>--yes</string>
<string>@clawnify/agent-control-ui</string>
</array>
<key>EnvironmentVariables</key>
<dict>
<key>PORT</key>
<string>5174</string>
<key>HOST</key>
<string>127.0.0.1</string>
</dict>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>/tmp/agent-control-ui.out.log</string>
<key>StandardErrorPath</key>
<string>/tmp/agent-control-ui.err.log</string>
</dict>
</plist>