- Task 1: Identity prompt now includes Discord userId
- Task 2: Added configurable schedulingIdentifier (default: ➡️)
- Task 3: Moderator handoff uses <@userId>+identifier instead of semantic messages
- Task 4: All prompts/comments/help text converted to English
- Task 5: Full project rename WhisperGate → Dirigent across all files
Breaking: config key changed from plugins.entries.whispergate to plugins.entries.dirigent
Breaking: channel policies file renamed to dirigent-channel-policies.json
Breaking: tool name changed from whispergate_tools to dirigent_tools
36 lines
571 B
Markdown
36 lines
571 B
Markdown
# Run Modes
|
|
|
|
Dirigent has two runtime components:
|
|
|
|
1. `plugin/` (OpenClaw plugin)
|
|
2. `no-reply-api/` (deterministic NO_REPLY service)
|
|
|
|
Docker is optional.
|
|
|
|
## Mode A (recommended): No Docker
|
|
|
|
```bash
|
|
cd no-reply-api
|
|
node server.mjs
|
|
```
|
|
|
|
Then configure OpenClaw provider `baseURL` to `http://127.0.0.1:8787/v1`.
|
|
|
|
## Mode B: Docker
|
|
|
|
```bash
|
|
./scripts/dev-up.sh
|
|
# or: docker compose up -d --build dirigent-no-reply-api
|
|
```
|
|
|
|
Stop:
|
|
|
|
```bash
|
|
./scripts/dev-down.sh
|
|
```
|
|
|
|
## Security notes
|
|
|
|
- Bind API to loopback/private network.
|
|
- If exposed beyond localhost, set `AUTH_TOKEN`.
|