feat: implement multi-message mode and shuffle mode features

- Add multi-message mode with start/end/prompt markers
- Implement turn order shuffling with /turn-shuffling command
- Add channel mode state management
- Update hooks to handle multi-message mode behavior
- Update plugin config with new markers
- Update TASKLIST.md with completed tasks
This commit is contained in:
zhi
2026-04-02 04:36:36 +00:00
parent 684f8f9ee7
commit bfbe40b3c6
8 changed files with 251 additions and 98 deletions

View File

@@ -25,7 +25,10 @@
"enableDirigentPolicyTool": { "type": "boolean", "default": true },
"enableDebugLogs": { "type": "boolean", "default": false },
"debugLogChannelIds": { "type": "array", "items": { "type": "string" }, "default": [] },
"moderatorBotToken": { "type": "string" }
"moderatorBotToken": { "type": "string" },
"multiMessageStartMarker": { "type": "string", "default": "↗️" },
"multiMessageEndMarker": { "type": "string", "default": "↙️" },
"multiMessagePromptMarker": { "type": "string", "default": "⤵️" }
},
"required": ["noReplyProvider", "noReplyModel"]
}