@crown-dev-studios/review-council 0.2.0 → 0.3.0
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/SKILL.md
CHANGED
|
@@ -135,7 +135,7 @@ Add `docs/reviews/` to `.gitignore` to keep review artifacts out of version cont
|
|
|
135
135
|
- Do not create files in `todos/` — the judge recommends todos and Review Council derives `follow-ups.md`, but neither creates authoritative todo files.
|
|
136
136
|
- Skills are passed to each model reviewer as additional review lenses for the run, not inlined prompt bodies.
|
|
137
137
|
- Model reviewers (Claude, Codex) run as CLI processes via the TS orchestrator.
|
|
138
|
-
- Interactive prompts from reviewer CLIs are detected and relayed; prefer explicit non-interactive mode (`claude --dangerously-skip-permissions -p`, `codex exec --
|
|
138
|
+
- Interactive prompts from reviewer CLIs are detected and relayed; prefer explicit non-interactive mode (`claude --dangerously-skip-permissions -p`, `codex exec --dangerously-bypass-approvals-and-sandbox`) for reliability.
|
|
139
139
|
|
|
140
140
|
## Supporting Files
|
|
141
141
|
|
|
@@ -19,8 +19,8 @@ const JUDGE_PROFILE_TEMPLATES = {
|
|
|
19
19
|
default: "judge.md",
|
|
20
20
|
};
|
|
21
21
|
const DEFAULT_CLAUDE_COMMAND = 'claude --dangerously-skip-permissions -p "$(cat $CLAUDE_DIR/claude-review-export.md)"';
|
|
22
|
-
const DEFAULT_CODEX_COMMAND = 'codex exec --
|
|
23
|
-
const DEFAULT_JUDGE_COMMAND = 'codex exec --
|
|
22
|
+
const DEFAULT_CODEX_COMMAND = 'codex exec --dangerously-bypass-approvals-and-sandbox "$(cat $CODEX_DIR/codex-review-export.md)"';
|
|
23
|
+
const DEFAULT_JUDGE_COMMAND = 'codex exec --dangerously-bypass-approvals-and-sandbox "$(cat $JUDGE_DIR/judge.md)"';
|
|
24
24
|
function nowIso() {
|
|
25
25
|
return new Date().toISOString();
|
|
26
26
|
}
|
package/package.json
CHANGED
|
@@ -34,8 +34,8 @@ npx @crown-dev-studios/review-council --target "staged changes" --open-html
|
|
|
34
34
|
|
|
35
35
|
Built-in defaults:
|
|
36
36
|
- **Claude:** `claude --dangerously-skip-permissions -p "$(cat $CLAUDE_DIR/claude-review-export.md)"`
|
|
37
|
-
- **Codex:** `codex exec --
|
|
38
|
-
- **Judge:** `codex exec --
|
|
37
|
+
- **Codex:** `codex exec --dangerously-bypass-approvals-and-sandbox "$(cat $CODEX_DIR/codex-review-export.md)"`
|
|
38
|
+
- **Judge:** `codex exec --dangerously-bypass-approvals-and-sandbox "$(cat $JUDGE_DIR/judge.md)"`
|
|
39
39
|
|
|
40
40
|
Use `--claude-command`, `--codex-command`, or `--judge-command` to override any default.
|
|
41
41
|
|
|
@@ -101,7 +101,7 @@ The orchestrator monitors each reviewer's stdout for prompt-like output (lines e
|
|
|
101
101
|
|
|
102
102
|
If both reviewers prompt simultaneously, questions are queued and presented one at a time.
|
|
103
103
|
|
|
104
|
-
This is a best-effort safety net. Prefer explicit non-interactive mode (`claude --dangerously-skip-permissions -p`, `codex exec --
|
|
104
|
+
This is a best-effort safety net. Prefer explicit non-interactive mode (`claude --dangerously-skip-permissions -p`, `codex exec --dangerously-bypass-approvals-and-sandbox`) when possible.
|
|
105
105
|
|
|
106
106
|
### Partial Judge Execution
|
|
107
107
|
|
|
@@ -117,4 +117,3 @@ The orchestrator waits for:
|
|
|
117
117
|
- judge `done.json`
|
|
118
118
|
|
|
119
119
|
If a process exits `0` but omits `done.json`, the stage is treated as incomplete.
|
|
120
|
-
|