@mutagent/cli 0.1.127 → 0.1.129
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/bin/cli.js +2 -2
- package/dist/bin/cli.js.map +3 -3
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -10903,7 +10903,7 @@ async function handlePostToolUse() {
|
|
|
10903
10903
|
state.openSpans = Object.fromEntries(Object.entries(state.openSpans).filter(([k]) => k !== matchedKey));
|
|
10904
10904
|
writeState(sessionId, state);
|
|
10905
10905
|
}
|
|
10906
|
-
const toolOutput = serializePayload(input.tool_output ?? input.toolOutput ?? input.tool_result ?? input.toolResult);
|
|
10906
|
+
const toolOutput = serializePayload(input.tool_output ?? input.toolOutput ?? input.tool_result ?? input.toolResult ?? input.output ?? input.result);
|
|
10907
10907
|
await sendBatchTrace([
|
|
10908
10908
|
{
|
|
10909
10909
|
traceId,
|
|
@@ -11360,5 +11360,5 @@ if (isInteractive && !isSkillCommand) {
|
|
|
11360
11360
|
}
|
|
11361
11361
|
program.parse();
|
|
11362
11362
|
|
|
11363
|
-
//# debugId=
|
|
11363
|
+
//# debugId=A0F1B767D1BF2A2364756E2164756E21
|
|
11364
11364
|
//# sourceMappingURL=cli.js.map
|