Zero-dependency Discord connector under packages/discord: binding
validation, REST and gateway clients, pi engine adapter, journal with
append-only inbox, outbox, admissions and notices, and a run.lock
ownership record {pid, start, boot} whose identity is checked three ways
and whose cleanup is gated by STOP. CLI check|run|stop|unlock via
scripts/discord.sh; offline suite scripts/test-discord.sh (28 checks,
87 node tests).
Reviewed by rev-code-02 on #1509 over nine rounds; approved exact tree
4e0feb6758c0a7e4a71483912a8e0d3e3ec95aef at comment 26170. Corrections
(1) to (12) recorded in BUILD-LOG. No listener started, no token read,
no Discord write; the live pilot follows this commit per the brief.
Co-Authored-By: Claude Fable 5.1 <[email protected]>
9 lines
470 B
Bash
Executable File
9 lines
470 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# `scripts/discord.sh check|run|stop|unlock <binding>`: the Discord connector for
|
|
# one seat on one server. See packages/discord/README.md. The binding lives
|
|
# at <dataRoot>/discord/<binding>.json (0600, never committed); the token
|
|
# stays in the seat's private secrets directory and is read at runtime only.
|
|
set -euo pipefail
|
|
REPO="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
exec node "$REPO/packages/discord/src/cli.mjs" "$@" --repo "$REPO"
|