- Fix enableWhispergatePolicyTool → enableDirigentPolicyTool in config schema and example - Fix whisper-gateway → dirigentway in install script - Add v0.2.0 changelog entry - Improve README with scheduling identifier docs and English text - Clean up plugin README with moderator handoff format docs - Reformat TASKLIST with cleaner done markers
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"plugins": {
|
|
"load": {
|
|
"paths": ["/path/to/Dirigent/dist/dirigent"]
|
|
},
|
|
"entries": {
|
|
"dirigent": {
|
|
"enabled": true,
|
|
"config": {
|
|
"enabled": true,
|
|
"discordOnly": true,
|
|
"listMode": "human-list",
|
|
"humanList": ["561921120408698910"],
|
|
"agentList": [],
|
|
"endSymbols": ["🔚"],
|
|
"channelPoliciesFile": "~/.openclaw/dirigent-channel-policies.json",
|
|
"noReplyProvider": "dirigentway",
|
|
"noReplyModel": "no-reply",
|
|
"enableDiscordControlTool": true,
|
|
"enableDirigentPolicyTool": true,
|
|
"enableDebugLogs": false,
|
|
"debugLogChannelIds": [],
|
|
"discordControlApiBaseUrl": "http://127.0.0.1:8790",
|
|
"discordControlApiToken": "<DISCORD_CONTROL_AUTH_TOKEN>",
|
|
"discordControlCallerId": "agent-main"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"models": {
|
|
"providers": {
|
|
"dirigentway": {
|
|
"apiKey": "<NO_REPLY_API_TOKEN_OR_PLACEHOLDER>",
|
|
"baseUrl": "http://127.0.0.1:8787/v1",
|
|
"api": "openai-completions",
|
|
"models": [
|
|
{
|
|
"id": "no-reply",
|
|
"name": "No Reply",
|
|
"reasoning": false,
|
|
"input": ["text"],
|
|
"cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 },
|
|
"contextWindow": 200000,
|
|
"maxTokens": 8192
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"agents": {
|
|
"list": [
|
|
{
|
|
"id": "main",
|
|
"tools": {
|
|
"allow": ["dirigent"]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|