Initial commit: Discord-Claude Gateway with event-driven agent runtime

This commit is contained in:
2026-02-22 13:59:57 -05:00
parent b4f340b610
commit f2247ea3ac
28 changed files with 2056 additions and 205 deletions

21
scripts/aetheel.service Normal file
View File

@@ -0,0 +1,21 @@
# Aetheel systemd service file
# Copy to /etc/systemd/system/aetheel.service and edit paths
# Or run: bash scripts/setup.sh (does this automatically)
[Unit]
Description=Aetheel Discord-Claude Gateway
After=network.target
[Service]
Type=simple
User=YOUR_USERNAME
WorkingDirectory=/path/to/aetheel-2
EnvironmentFile=/path/to/aetheel-2/.env
ExecStart=/usr/bin/npx tsx src/index.ts
Restart=on-failure
RestartSec=10
StandardOutput=journal
StandardError=journal
[Install]
WantedBy=multi-user.target