- 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
28 lines
440 B
Markdown
28 lines
440 B
Markdown
# Release / Packaging
|
|
|
|
## Package plugin files
|
|
|
|
```bash
|
|
node scripts/package-plugin.mjs
|
|
```
|
|
|
|
Output:
|
|
|
|
- `dist/dirigent/index.ts`
|
|
- `dist/dirigent/rules.ts`
|
|
- `dist/dirigent/openclaw.plugin.json`
|
|
- `dist/dirigent/README.md`
|
|
- `dist/dirigent/package.json`
|
|
|
|
## Use packaged plugin path
|
|
|
|
Point OpenClaw `plugins.load.paths` to:
|
|
|
|
`/absolute/path/to/Dirigent/dist/dirigent`
|
|
|
|
## Verify package completeness
|
|
|
|
```bash
|
|
cd plugin && npm run check
|
|
```
|