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.
- package/dist/adapters/codex.js +2 -1
- package/dist/adapters/gemini.js +2 -1
- package/dist/handoff.js +3 -1
- package/package.json +1 -1
package/dist/adapters/codex.js
CHANGED
|
@@ -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
|
-
'--
|
|
90
|
+
'--full-auto',
|
|
91
|
+
'--sandbox', 'read-only',
|
|
91
92
|
'--skip-git-repo-check',
|
|
92
93
|
'-C', workingDir,
|
|
93
94
|
'-', // Read prompt from stdin
|
package/dist/adapters/gemini.js
CHANGED
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
|