@kynver-app/openclaw-agent-os 0.1.43 → 0.1.47

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,7 +1,7 @@
1
1
  {
2
2
  "id": "kynver-agent-os-tools",
3
3
  "name": "Kynver AgentOS Tools",
4
- "description": "First-class OpenClaw tools for Kynver AgentOS, using direct Kynver HTTP with mcporter fallback.",
4
+ "description": "First-class OpenClaw tools for Kynver AgentOS plus read-only Trading Desk analyst_market_* bridge tools.",
5
5
  "activation": {
6
6
  "onStartup": true
7
7
  },
@@ -71,7 +71,22 @@
71
71
  "kynver_harness_worker_status",
72
72
  "kynver_harness_worker_tail",
73
73
  "kynver_harness_worker_stop",
74
- "kynver_harness_worker_complete"
74
+ "kynver_harness_worker_complete",
75
+ "analyst_market_list_accounts",
76
+ "analyst_market_list_orders",
77
+ "analyst_market_get_positions",
78
+ "analyst_market_read_bars",
79
+ "analyst_market_read_chain_asof",
80
+ "analyst_market_list_proposals",
81
+ "analyst_market_get_proposal_status",
82
+ "analyst_market_desk_list_reports",
83
+ "analyst_market_desk_get_report",
84
+ "analyst_market_get_desk_debate",
85
+ "analyst_market_get_desk_debate_context",
86
+ "analyst_market_desk_list_paper_trades",
87
+ "analyst_market_desk_get_cost_summary",
88
+ "analyst_market_desk_list_reflections",
89
+ "analyst_market_desk_get_outcome_metrics"
75
90
  ]
76
91
  },
77
92
  "configSchema": {
@@ -148,10 +163,25 @@
148
163
  "type": "string",
149
164
  "description": "Default git repo path for harness tools. Required when enableHarnessTools is true."
150
165
  },
166
+ "enableAnalystMarketBridge": {
167
+ "type": "boolean",
168
+ "default": true,
169
+ "description": "Register read-only analyst_market_* Trading Desk tools for OpenClaw/Telegram. Requires admin KYNVER_API_KEY."
170
+ },
151
171
  "enableTelegramToolErrorFilter": {
152
172
  "type": "boolean",
153
173
  "default": true,
154
174
  "description": "Suppress raw exec/tool progress and failure lines on Telegram and webchat direct chat."
175
+ },
176
+ "enableEstimatorMcpBridge": {
177
+ "type": "boolean",
178
+ "default": true,
179
+ "description": "Register deferred estimator_* MCP tools for OpenClaw tool_search via mcporter + hosted kynver-estimator SSE."
180
+ },
181
+ "estimatorServer": {
182
+ "type": "string",
183
+ "default": "kynver-estimator",
184
+ "description": "mcporter server name for @kynver-app/mcp-estimator."
155
185
  }
156
186
  }
157
187
  }
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.43",
5
+ "version": "0.1.47",
6
6
  "description": "OpenClaw plugin that exposes Kynver AgentOS as first-class agent tools",
7
7
  "main": "./dist/index.js",
8
8
  "bin": {
@@ -35,6 +35,7 @@
35
35
  "dist/**",
36
36
  "scripts/**",
37
37
  "openclaw.plugin.json",
38
+ "analyst-market-readonly-tools.json",
38
39
  "README.md",
39
40
  "SECURITY.md"
40
41
  ],
@@ -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";
@@ -36,6 +36,7 @@ function parseArgs(argv) {
36
36
  apiKey: "",
37
37
  harnessRepo: process.env.KYNVER_HARNESS_REPO || "",
38
38
  enableHarness: true,
39
+ enableAnalystMarketBridge: true,
39
40
  packageSpec: DEFAULT_PACKAGE,
40
41
  skipInstall: false,
41
42
  skipRestart: false,
@@ -98,6 +99,9 @@ function buildPatch(opts) {
98
99
  enableRuntimeSkillManifest: true,
99
100
  enableContinuityGuidance: true,
100
101
  enableHarnessTools: Boolean(opts.enableHarness && opts.harnessRepo),
102
+ enableAnalystMarketBridge: true,
103
+ enableEstimatorMcpBridge: true,
104
+ estimatorServer: "kynver-estimator",
101
105
  };
102
106
 
103
107
  if (opts.apiKey) config.kynverApiKey = opts.apiKey;