@kynver-app/openclaw-agent-os 0.1.44 → 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.
- package/analyst-market-readonly-tools.json +325 -0
- package/dist/index.js +626 -127
- package/dist/index.js.map +4 -4
- package/openclaw.plugin.json +22 -2
- package/package.json +2 -1
- package/scripts/bootstrap-openclaw.mjs +2 -0
package/openclaw.plugin.json
CHANGED
|
@@ -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
|
|
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,6 +163,11 @@
|
|
|
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,
|
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.
|
|
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
|
],
|
|
@@ -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,7 @@ function buildPatch(opts) {
|
|
|
98
99
|
enableRuntimeSkillManifest: true,
|
|
99
100
|
enableContinuityGuidance: true,
|
|
100
101
|
enableHarnessTools: Boolean(opts.enableHarness && opts.harnessRepo),
|
|
102
|
+
enableAnalystMarketBridge: true,
|
|
101
103
|
enableEstimatorMcpBridge: true,
|
|
102
104
|
estimatorServer: "kynver-estimator",
|
|
103
105
|
};
|