@ai-dev-methodologies/rlp-desk 0.7.2 → 0.7.4
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": "@ai-dev-methodologies/rlp-desk",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "Fresh-context iterative loops for Claude Code — autonomous task completion with independent verification",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"postinstall": "node scripts/postinstall.js",
|
|
@@ -41,7 +41,7 @@ build_claude_cmd() {
|
|
|
41
41
|
local prompt_file="${3:-}"
|
|
42
42
|
local output_log="${4:-}"
|
|
43
43
|
|
|
44
|
-
local base="DISABLE_OMC=1 $CLAUDE_BIN --model $model --
|
|
44
|
+
local base="DISABLE_OMC=1 $CLAUDE_BIN --model $model --mcp-config '{\"mcpServers\":{}}' --strict-mcp-config --dangerously-skip-permissions"
|
|
45
45
|
case "$mode" in
|
|
46
46
|
tui)
|
|
47
47
|
echo "$base"
|
|
@@ -1021,7 +1021,7 @@ restart_worker() {
|
|
|
1021
1021
|
|
|
1022
1022
|
# Re-launch worker (tmux interactive pattern)
|
|
1023
1023
|
if [[ "$WORKER_ENGINE" = "codex" ]]; then
|
|
1024
|
-
safe_send_keys "$pane_id" "${CODEX_BIN:-codex} -m $WORKER_CODEX_MODEL -c model_reasoning_effort=\"$WORKER_CODEX_REASONING\" --dangerously-bypass-approvals-and-sandbox"
|
|
1024
|
+
safe_send_keys "$pane_id" "${CODEX_BIN:-codex} -m $WORKER_CODEX_MODEL -c model_reasoning_effort=\"$WORKER_CODEX_REASONING\" --disable plugins --dangerously-bypass-approvals-and-sandbox"
|
|
1025
1025
|
else
|
|
1026
1026
|
safe_send_keys "$pane_id" "$(build_claude_cmd tui "$WORKER_MODEL")"
|
|
1027
1027
|
fi
|
|
@@ -1161,7 +1161,7 @@ write_worker_trigger() {
|
|
|
1161
1161
|
local engine_cmd="${CODEX_BIN:-codex} \\
|
|
1162
1162
|
-m $WORKER_CODEX_MODEL \\
|
|
1163
1163
|
-c model_reasoning_effort=\"$WORKER_CODEX_REASONING\" \\
|
|
1164
|
-
--dangerously-bypass-approvals-and-sandbox \\
|
|
1164
|
+
--disable plugins --dangerously-bypass-approvals-and-sandbox \\
|
|
1165
1165
|
\"\$(cat $prompt_file)\""
|
|
1166
1166
|
local engine_comment="# Run codex with fresh context (fallback trigger — TUI primary launch via launch_worker_codex)"
|
|
1167
1167
|
else
|
|
@@ -1246,7 +1246,7 @@ write_verifier_trigger() {
|
|
|
1246
1246
|
if [[ "$verifier_engine" = "codex" ]]; then
|
|
1247
1247
|
local engine_cmd="${CODEX_BIN:-codex} -m $VERIFIER_CODEX_MODEL \\
|
|
1248
1248
|
-c model_reasoning_effort=\"$VERIFIER_CODEX_REASONING\" \\
|
|
1249
|
-
--dangerously-bypass-approvals-and-sandbox \\
|
|
1249
|
+
--disable plugins --dangerously-bypass-approvals-and-sandbox \\
|
|
1250
1250
|
\"\$(cat $prompt_file)\" \\
|
|
1251
1251
|
2>&1 | tee $output_log"
|
|
1252
1252
|
local engine_comment="# Run codex with fresh context (governance.md s7 step 7)"
|
|
@@ -1652,7 +1652,7 @@ run_single_verifier() {
|
|
|
1652
1652
|
# Launch verifier — dispatch to engine-specific function
|
|
1653
1653
|
local verifier_launch
|
|
1654
1654
|
if [[ "$engine" = "codex" ]]; then
|
|
1655
|
-
verifier_launch="${CODEX_BIN:-codex} -m $VERIFIER_CODEX_MODEL -c model_reasoning_effort=\"$VERIFIER_CODEX_REASONING\" --dangerously-bypass-approvals-and-sandbox"
|
|
1655
|
+
verifier_launch="${CODEX_BIN:-codex} -m $VERIFIER_CODEX_MODEL -c model_reasoning_effort=\"$VERIFIER_CODEX_REASONING\" --disable plugins --dangerously-bypass-approvals-and-sandbox"
|
|
1656
1656
|
launch_verifier_codex "$VERIFIER_PANE" "$prompt_file" "$iter" "$verifier_launch"
|
|
1657
1657
|
log_debug "Verifier$suffix codex TUI dispatched"
|
|
1658
1658
|
else
|
|
@@ -1738,7 +1738,7 @@ run_sequential_final_verify() {
|
|
|
1738
1738
|
# Launch verifier
|
|
1739
1739
|
local verifier_launch
|
|
1740
1740
|
if [[ "$VERIFIER_ENGINE" = "codex" ]]; then
|
|
1741
|
-
verifier_launch="${CODEX_BIN:-codex} -m $VERIFIER_CODEX_MODEL -c model_reasoning_effort=\"$VERIFIER_CODEX_REASONING\" --dangerously-bypass-approvals-and-sandbox"
|
|
1741
|
+
verifier_launch="${CODEX_BIN:-codex} -m $VERIFIER_CODEX_MODEL -c model_reasoning_effort=\"$VERIFIER_CODEX_REASONING\" --disable plugins --dangerously-bypass-approvals-and-sandbox"
|
|
1742
1742
|
launch_verifier_codex "$VERIFIER_PANE" "$verifier_prompt" "$iter" "$verifier_launch"
|
|
1743
1743
|
else
|
|
1744
1744
|
verifier_launch="$(build_claude_cmd tui "$VERIFIER_MODEL")"
|
|
@@ -2179,7 +2179,7 @@ main() {
|
|
|
2179
2179
|
|
|
2180
2180
|
local worker_launch
|
|
2181
2181
|
if [[ "$WORKER_ENGINE" = "codex" ]]; then
|
|
2182
|
-
worker_launch="${CODEX_BIN:-codex} -m $WORKER_CODEX_MODEL -c model_reasoning_effort=\"$WORKER_CODEX_REASONING\" --dangerously-bypass-approvals-and-sandbox"
|
|
2182
|
+
worker_launch="${CODEX_BIN:-codex} -m $WORKER_CODEX_MODEL -c model_reasoning_effort=\"$WORKER_CODEX_REASONING\" --disable plugins --dangerously-bypass-approvals-and-sandbox"
|
|
2183
2183
|
if ! launch_worker_codex "$WORKER_PANE" "$worker_prompt" "$ITERATION" "$worker_launch"; then
|
|
2184
2184
|
write_blocked_sentinel "Worker codex failed to start in pane"
|
|
2185
2185
|
update_status "blocked" "worker_start_failed"
|
|
@@ -2361,7 +2361,7 @@ main() {
|
|
|
2361
2361
|
|
|
2362
2362
|
local verifier_launch
|
|
2363
2363
|
if [[ "$VERIFIER_ENGINE" = "codex" ]]; then
|
|
2364
|
-
verifier_launch="${CODEX_BIN:-codex} -m $VERIFIER_CODEX_MODEL -c model_reasoning_effort=\"$VERIFIER_CODEX_REASONING\" --dangerously-bypass-approvals-and-sandbox"
|
|
2364
|
+
verifier_launch="${CODEX_BIN:-codex} -m $VERIFIER_CODEX_MODEL -c model_reasoning_effort=\"$VERIFIER_CODEX_REASONING\" --disable plugins --dangerously-bypass-approvals-and-sandbox"
|
|
2365
2365
|
else
|
|
2366
2366
|
verifier_launch="$(build_claude_cmd tui "$VERIFIER_MODEL")"
|
|
2367
2367
|
fi
|