@kynver-app/openclaw-agent-os 0.1.31 → 0.1.35
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 +308 -3
- package/dist/index.js.map +3 -3
- package/openclaw.plugin.json +6 -0
- package/package.json +1 -1
- package/scripts/bootstrap-openclaw.mjs +8 -2
package/openclaw.plugin.json
CHANGED
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"agent_os_plan_list_links",
|
|
57
57
|
"agent_os_plan_list_versions",
|
|
58
58
|
"agent_os_command_center_get",
|
|
59
|
+
"agent_os_command_center_dashboard_contract_get",
|
|
59
60
|
"agent_os_task_next_action",
|
|
60
61
|
"agent_os_plan_progress_rows_list",
|
|
61
62
|
"agent_os_plan_progress_rows_upsert",
|
|
@@ -145,6 +146,11 @@
|
|
|
145
146
|
"harnessRepo": {
|
|
146
147
|
"type": "string",
|
|
147
148
|
"description": "Default git repo path for harness tools. Required when enableHarnessTools is true."
|
|
149
|
+
},
|
|
150
|
+
"enableTelegramToolErrorFilter": {
|
|
151
|
+
"type": "boolean",
|
|
152
|
+
"default": true,
|
|
153
|
+
"description": "Suppress raw failed exec/tool/worktree lines on Telegram and webchat direct chat."
|
|
148
154
|
}
|
|
149
155
|
}
|
|
150
156
|
}
|
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";
|
|
@@ -104,11 +104,17 @@ function buildPatch(opts) {
|
|
|
104
104
|
if (opts.enableHarness && opts.harnessRepo) config.harnessRepo = opts.harnessRepo;
|
|
105
105
|
|
|
106
106
|
return {
|
|
107
|
+
messages: {
|
|
108
|
+
suppressToolErrors: true,
|
|
109
|
+
},
|
|
107
110
|
plugins: {
|
|
108
111
|
entries: {
|
|
109
112
|
[PLUGIN_ID]: {
|
|
110
113
|
enabled: true,
|
|
111
|
-
config
|
|
114
|
+
config: {
|
|
115
|
+
...config,
|
|
116
|
+
enableTelegramToolErrorFilter: true,
|
|
117
|
+
},
|
|
112
118
|
},
|
|
113
119
|
},
|
|
114
120
|
},
|