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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "triage-gate",
2
+ "id": "openclaw-triage-gate",
3
3
  "name": "Triage Gate",
4
4
  "description": "Uses a cheap model to decide if the bot should respond in group chats before the main model runs. Saves 75-90% of group chat token costs.",
5
5
  "configSchema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-triage-gate",
3
- "version": "1.0.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.",