openclaw-triage-gate 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-triage-gate",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A lightweight triage gate for OpenClaw group chats. Uses a cheap model to decide if the bot should respond before the expensive main model runs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -14,7 +14,7 @@ import { evaluateMessage } from "./triage.js";
|
|
|
14
14
|
import { type TriageGateConfig } from "./config.js";
|
|
15
15
|
|
|
16
16
|
export default definePluginEntry({
|
|
17
|
-
id: "triage-gate",
|
|
17
|
+
id: "openclaw-triage-gate",
|
|
18
18
|
name: "Triage Gate",
|
|
19
19
|
description:
|
|
20
20
|
"Uses a cheap model to decide if the bot should respond in group chats, saving 75-90% of group chat token costs.",
|