@kynver-app/openclaw-agent-os 0.1.42 → 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.
@@ -46,6 +46,7 @@
46
46
  "agent_os_task_abort",
47
47
  "agent_os_task_claim",
48
48
  "agent_os_task_renew_lease",
49
+ "agent_os_task_operator_priority",
49
50
  "agent_os_plan_create",
50
51
  "agent_os_plan_list",
51
52
  "agent_os_plan_get",
@@ -151,6 +152,16 @@
151
152
  "type": "boolean",
152
153
  "default": true,
153
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."
154
165
  }
155
166
  }
156
167
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@kynver-app/openclaw-agent-os",
3
3
  "private": false,
4
4
  "type": "module",
5
- "version": "0.1.42",
5
+ "version": "0.1.44",
6
6
  "description": "OpenClaw plugin that exposes Kynver AgentOS as first-class agent tools",
7
7
  "main": "./dist/index.js",
8
8
  "bin": {
@@ -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;