cc-reviewer 1.3.3 → 1.3.5

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.
@@ -217,7 +217,7 @@ export class CodexAdapter {
217
217
  }
218
218
  const args = [
219
219
  'exec',
220
- '-m', 'gpt-5.2-codex',
220
+ '-m', 'gpt-5.3-codex',
221
221
  '-c', `model_reasoning_effort=${reasoningEffort}`,
222
222
  '-c', 'model_reasoning_summary_format=experimental',
223
223
  '--dangerously-bypass-approvals-and-sandbox',
package/dist/pipeline.js CHANGED
@@ -366,7 +366,7 @@ export async function processReviewOutput(output, context) {
366
366
  verifiedCount: verified.length,
367
367
  rejectedCount: rejected.length,
368
368
  actionableCount,
369
- topPriority: actionPlan.filter(a => a.action === 'fix_now').slice(0, 5),
369
+ topPriority: actionPlan.filter(a => a.action === 'fix_now'),
370
370
  },
371
371
  };
372
372
  }
package/dist/schema.js CHANGED
@@ -90,7 +90,7 @@ export const RiskAssessment = z.object({
90
90
  overall_level: z.enum(['critical', 'high', 'medium', 'low', 'minimal']),
91
91
  score: z.number().min(0).max(100).describe('Numeric risk score 0-100'),
92
92
  summary: z.string().max(300).describe('Brief risk summary'),
93
- top_concerns: z.array(z.string()).max(5).describe('Top risk factors'),
93
+ top_concerns: z.array(z.string()).describe('Top risk factors'),
94
94
  mitigations: z.array(z.string()).optional().describe('Suggested mitigations'),
95
95
  });
96
96
  // =============================================================================
@@ -219,7 +219,7 @@ export function getReviewOutputJsonSchema() {
219
219
  overall_level: { type: 'string', enum: ['critical', 'high', 'medium', 'low', 'minimal'] },
220
220
  score: { type: 'number', minimum: 0, maximum: 100 },
221
221
  summary: { type: 'string', maxLength: 300 },
222
- top_concerns: { type: 'array', items: { type: 'string' }, maxItems: 5 }
222
+ top_concerns: { type: 'array', items: { type: 'string' } }
223
223
  }
224
224
  }
225
225
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-reviewer",
3
- "version": "1.3.3",
3
+ "version": "1.3.5",
4
4
  "description": "MCP server for Claude Code - Get second-opinion feedback from Codex/Gemini CLIs",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",