ai-lens 0.8.62 → 0.8.63
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/.commithash +1 -1
- package/client/codex.js +4 -0
- package/package.json +1 -1
package/.commithash
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
5128852
|
package/client/codex.js
CHANGED
|
@@ -305,6 +305,10 @@ function buildSpecificToolEvent(stream, tool, input, parsedOutput, timestamp, ra
|
|
|
305
305
|
{
|
|
306
306
|
command: input?.cmd || input?.command || null,
|
|
307
307
|
result: parsedOutput.result,
|
|
308
|
+
// parseToolOutput already extracts exit_code from parsed.metadata —
|
|
309
|
+
// include it so build-session-stats can detect failed shell commands
|
|
310
|
+
// by exact signal rather than falling back to the output-text heuristic.
|
|
311
|
+
exit_code: parsedOutput.exitCode ?? null,
|
|
308
312
|
},
|
|
309
313
|
raw,
|
|
310
314
|
);
|