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 CHANGED
@@ -1 +1 @@
1
- ee4f839
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
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-lens",
3
- "version": "0.8.62",
3
+ "version": "0.8.63",
4
4
  "type": "module",
5
5
  "description": "Centralized session analytics for AI coding tools",
6
6
  "bin": {