@opengauge/openclaw-plugin 0.1.2 → 0.1.3
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 +18 -18
- package/package.json +1 -1
package/openclaw.plugin.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"description": "PromptOps observability
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
2
|
+
"id": "opengauge",
|
|
3
|
+
"name": "OpenGauge",
|
|
4
|
+
"description": "PromptOps observability: per-call cost tracking, runaway loop detection, circuit breaker, and budget enforcement",
|
|
5
|
+
"version": "0.1.2",
|
|
6
|
+
"configSchema": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"properties": {
|
|
10
|
+
"circuit_breaker_enabled": { "type": "boolean" },
|
|
11
|
+
"circuit_breaker_similarity_threshold": { "type": "number" },
|
|
12
|
+
"circuit_breaker_max_similar_calls": { "type": "number" },
|
|
13
|
+
"circuit_breaker_action": { "type": "string", "enum": ["warn", "block"] },
|
|
14
|
+
"budget_session_limit_usd": { "type": "number" },
|
|
15
|
+
"budget_daily_limit_usd": { "type": "number" },
|
|
16
|
+
"budget_monthly_limit_usd": { "type": "number" },
|
|
17
|
+
"optimize": { "type": "boolean" }
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
20
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengauge/openclaw-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "PromptOps observability for OpenClaw: per-call cost tracking, runaway loop detection, circuit breaker, and budget enforcement",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|