@kynver-app/openclaw-agent-os 0.1.43 → 0.1.44
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/dist/index.js +2658 -37
- package/dist/index.js.map +4 -4
- package/openclaw.plugin.json +10 -0
- package/package.json +1 -1
- package/scripts/bootstrap-openclaw.mjs +3 -1
package/openclaw.plugin.json
CHANGED
|
@@ -152,6 +152,16 @@
|
|
|
152
152
|
"type": "boolean",
|
|
153
153
|
"default": true,
|
|
154
154
|
"description": "Suppress raw exec/tool progress and failure lines on Telegram and webchat direct chat."
|
|
155
|
+
},
|
|
156
|
+
"enableEstimatorMcpBridge": {
|
|
157
|
+
"type": "boolean",
|
|
158
|
+
"default": true,
|
|
159
|
+
"description": "Register deferred estimator_* MCP tools for OpenClaw tool_search via mcporter + hosted kynver-estimator SSE."
|
|
160
|
+
},
|
|
161
|
+
"estimatorServer": {
|
|
162
|
+
"type": "string",
|
|
163
|
+
"default": "kynver-estimator",
|
|
164
|
+
"description": "mcporter server name for @kynver-app/mcp-estimator."
|
|
155
165
|
}
|
|
156
166
|
}
|
|
157
167
|
}
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
import { readFileSync } from "node:fs";
|
|
3
3
|
import { dirname, join } from "node:path";
|
|
4
4
|
import { fileURLToPath } from "node:url";
|
|
@@ -98,6 +98,8 @@ function buildPatch(opts) {
|
|
|
98
98
|
enableRuntimeSkillManifest: true,
|
|
99
99
|
enableContinuityGuidance: true,
|
|
100
100
|
enableHarnessTools: Boolean(opts.enableHarness && opts.harnessRepo),
|
|
101
|
+
enableEstimatorMcpBridge: true,
|
|
102
|
+
estimatorServer: "kynver-estimator",
|
|
101
103
|
};
|
|
102
104
|
|
|
103
105
|
if (opts.apiKey) config.kynverApiKey = opts.apiKey;
|