openairev 0.3.13 → 0.3.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openairev",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "description": "Cross-model AI code reviewer — independent review for AI-assisted coding workflows",
5
5
  "type": "module",
6
6
  "bin": {
@@ -130,12 +130,18 @@ export function parseClaudeStreamOutput(stdout, { progress = [], fallbackSession
130
130
  };
131
131
  }
132
132
 
133
- return {
133
+ const returnValue = {
134
134
  result: verdict || finalText,
135
135
  raw_output: stdout,
136
136
  progress,
137
137
  session_id: sessionId,
138
138
  };
139
+
140
+ if (!verdict && !finalText) {
141
+ returnValue.error = 'Claude produced no output. Check .openairev/logs/ for the raw session output.';
142
+ }
143
+
144
+ return returnValue;
139
145
  }
140
146
 
141
147
  function extractAssistantText(event) {
@@ -42,6 +42,8 @@ export class CodexAdapter {
42
42
  const lines = result.stdout.trim().split('\n');
43
43
  let agentMessage = null;
44
44
  let sessionId = null;
45
+ let lastTurn = null;
46
+ let lastError = null;
45
47
 
46
48
  for (const line of lines) {
47
49
  try {
@@ -52,12 +54,13 @@ export class CodexAdapter {
52
54
  if (event.type === 'item.completed' && event.item?.type === 'agent_message') {
53
55
  agentMessage = event.item.text;
54
56
  }
57
+ if (event.type === 'turn.completed') {
58
+ lastTurn = event;
59
+ }
55
60
  if (event.type === 'error' || event.type === 'turn.failed') {
56
- const errMsg = event.message || event.error?.message || JSON.stringify(event);
57
- throw new Error(`Codex error: ${errMsg}`);
61
+ lastError = event.message || event.error?.message || JSON.stringify(event);
58
62
  }
59
- } catch (e) {
60
- if (e.message?.startsWith('Codex error:')) throw e;
63
+ } catch {
61
64
  // skip non-JSON lines
62
65
  }
63
66
  }
@@ -76,9 +79,19 @@ export class CodexAdapter {
76
79
  }
77
80
  }
78
81
 
79
- return { raw: result.stdout, raw_output: result.stdout, progress, session_id: this.sessionId };
80
- } catch {
81
- return { raw: result.stdout, raw_output: result.stdout, error: 'Failed to parse output' };
82
+ // No verdict build a diagnostic error from what we know
83
+ let error = lastError ? `Codex error: ${lastError}` : 'Codex produced no verdict.';
84
+ if (lastTurn?.usage) {
85
+ const { input_tokens, output_tokens } = lastTurn.usage;
86
+ error += ` Tokens used: ${input_tokens} in / ${output_tokens} out.`;
87
+ }
88
+ if (lastTurn && !lastError) {
89
+ error += ' Likely exhausted its turn budget exploring files before producing output.';
90
+ }
91
+
92
+ return { raw: result.stdout, raw_output: result.stdout, progress, session_id: this.sessionId, error };
93
+ } catch (e) {
94
+ return { raw: result.stdout, raw_output: result.stdout, error: `Failed to parse Codex output: ${e.message}` };
82
95
  }
83
96
  }
84
97
  }