4b24368be2
Scaffolds a reproducible, idempotent installer that stands up the four native launchd core services (soul :7770, engram :8742, mcp-wrapper :17779, mcp-proxy :7779), seeds a fresh engram with the genesis identity via forge, and installs the Claude Code config (neuron agent + core hooks + local MCP). Fully templated to the invoking user's $HOME; Anthropic key prompted and stored in Keychain; no secrets committed. Personal automations and synapse-dependent hooks excluded from core.
28 lines
918 B
Cheetah
28 lines
918 B
Cheetah
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!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>ai.neuron.engram</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>@@ENGRAM_BIN@@</string>
|
|
</array>
|
|
<key>WorkingDirectory</key>
|
|
<string>@@ENGRAM_REPO@@</string>
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>ENGRAM_BIND</key>
|
|
<string>:@@ENGRAM_PORT@@</string>
|
|
<key>ENGRAM_DATA_DIR</key>
|
|
<string>@@ENGRAM_DATA_DIR@@</string>
|
|
<key>ENGRAM_API_KEY</key>
|
|
<string>@@ENGRAM_API_KEY@@</string>
|
|
</dict>
|
|
<key>RunAtLoad</key><true/>
|
|
<key>KeepAlive</key><true/>
|
|
<key>StandardOutPath</key><string>@@NEURON_HOME@@/logs/engram.log</string>
|
|
<key>StandardErrorPath</key><string>@@NEURON_HOME@@/logs/engram.log</string>
|
|
<key>ThrottleInterval</key><integer>5</integer>
|
|
</dict>
|
|
</plist>
|