@myagentroam/node 0.9.84 → 0.9.86
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.
|
@@ -130,7 +130,7 @@ export class MarAgentConversationNormalizer {
|
|
|
130
130
|
const ownItemId = itemId('tool', event.callId);
|
|
131
131
|
if (event.toolName === 'exec') {
|
|
132
132
|
const input = record(event.input) ?? {};
|
|
133
|
-
const action = input.action;
|
|
133
|
+
const action = input.action == null && typeof input.command === 'string' ? 'start' : input.action;
|
|
134
134
|
if (action === 'start' && typeof input.command === 'string') {
|
|
135
135
|
const command = {
|
|
136
136
|
itemId: ownItemId,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myagentroam/node",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.86",
|
|
4
4
|
"description": "MyAgentRoam Node runtime CLI.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"node-pty": "1.1.0",
|
|
29
29
|
"ws": "^8.21.3",
|
|
30
30
|
"zod": "4.4.3",
|
|
31
|
-
"@myagentroam/agent": "0.9.
|
|
32
|
-
"@myagentroam/protocol": "0.9.
|
|
31
|
+
"@myagentroam/agent": "0.9.86",
|
|
32
|
+
"@myagentroam/protocol": "0.9.86"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/ws": "^8.18.1"
|