1.9 KiB
1.9 KiB
WhisperGate Integration (No-touch Template)
This guide does not change your current OpenClaw config automatically. It only generates a JSON snippet you can review.
Generate config snippet
node scripts/render-openclaw-config.mjs \
/absolute/path/to/WhisperGate/plugin \
openai \
whispergate-no-reply-v1 \
561921120408698910
Arguments:
- plugin path
- provider alias
- model name
- bypass user ids (comma-separated, optional)
Output
The script prints JSON for:
plugins.load.pathsplugins.entries.whispergate.config
You can merge this snippet manually into your openclaw.json.
Installer script (with rollback)
For production-like install with automatic rollback on error:
./scripts/install-whispergate-openclaw.sh --install
Uninstall (revert all recorded config changes):
./scripts/install-whispergate-openclaw.sh --uninstall
# or specify a record explicitly
# RECORD_FILE=~/.openclaw/whispergate-install-records/whispergate-YYYYmmddHHMMSS.json \
# ./scripts/install-whispergate-openclaw.sh --uninstall
Environment overrides:
PLUGIN_PATHNO_REPLY_PROVIDER_IDNO_REPLY_MODEL_IDNO_REPLY_BASE_URLNO_REPLY_API_KEYLIST_MODE(human-listoragent-list)HUMAN_LIST_JSONAGENT_LIST_JSONCHANNEL_POLICIES_FILE(standalone channel policy file path)CHANNEL_POLICIES_JSON(only used to initialize file when missing)END_SYMBOLS_JSON
The script:
- writes via
openclaw config set ... --json - creates config backup first
- restores backup automatically if any install step fails
- writes a change record for every install/uninstall:
- directory:
~/.openclaw/whispergate-install-records/ - latest pointer:
~/.openclaw/whispergate-install-record-latest.json
- directory:
Notes
- Keep no-reply API bound to loopback/private network.
- If you use API auth, set
AUTH_TOKENand align provider apiKey usage.