cc-reviewer 3.0.0 → 3.0.1

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.
@@ -87,7 +87,8 @@ export class CodexAdapter {
87
87
  '-m', 'gpt-5.4',
88
88
  '-c', `model_reasoning_effort=${reasoningEffort}`,
89
89
  '-c', 'model_reasoning_summary_format=experimental',
90
- '--dangerously-bypass-approvals-and-sandbox',
90
+ '--full-auto',
91
+ '--sandbox', 'read-only',
91
92
  '--skip-git-repo-check',
92
93
  '-C', workingDir,
93
94
  '-', // Read prompt from stdin
@@ -79,7 +79,8 @@ export class GeminiAdapter {
79
79
  }
80
80
  async runCli(prompt, workingDir) {
81
81
  const args = [
82
- '--yolo',
82
+ '--sandbox',
83
+ '--approval-mode', 'plan',
83
84
  '--output-format', 'stream-json',
84
85
  '--include-directories', workingDir,
85
86
  '-p', '',
package/dist/handoff.js CHANGED
@@ -168,7 +168,9 @@ export function buildHandoffPrompt(options) {
168
168
 
169
169
  Review recent work in \`${handoff.workingDir}\`.
170
170
 
171
- **Summary:** ${handoff.summary}${handoff.confidence !== undefined && handoff.confidence < 0.9 ? `\n**CC Confidence:** ${Math.round(handoff.confidence * 100)}% — verify weak areas` : ''}`);
171
+ **Summary:** ${handoff.summary}${handoff.confidence !== undefined && handoff.confidence < 0.9 ? `\n**CC Confidence:** ${Math.round(handoff.confidence * 100)}% — verify weak areas` : ''}
172
+
173
+ **IMPORTANT: This is a READ-ONLY review. Do NOT create, modify, or delete any files. Only read files to verify claims.**`);
172
174
  // SECTION 3: CC'S UNCERTAINTIES
173
175
  if (handoff.uncertainties && handoff.uncertainties.length > 0) {
174
176
  sections.push(`## CC'S UNCERTAINTIES
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cc-reviewer",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
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",