@ai-dev-methodologies/rlp-desk 0.7.1 → 0.7.3
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.3",
|
|
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 '{}' --dangerously-skip-permissions"
|
|
45
45
|
case "$mode" in
|
|
46
46
|
tui)
|
|
47
47
|
echo "$base"
|
|
@@ -100,6 +100,7 @@ if [[ "${VERIFY_CONSENSUS:-0}" = "1" ]]; then
|
|
|
100
100
|
elif [[ "${FINAL_CONSENSUS:-0}" = "1" ]]; then
|
|
101
101
|
CONSENSUS_MODE="final-only"
|
|
102
102
|
fi
|
|
103
|
+
CONSENSUS_SCOPE="${CONSENSUS_SCOPE:-${CONSENSUS_MODE}}"
|
|
103
104
|
CB_THRESHOLD="${CB_THRESHOLD:-6}" # consecutive failures before BLOCKED (default: 6)
|
|
104
105
|
# Effective CB threshold: doubled when consensus mode active
|
|
105
106
|
if [[ "$CONSENSUS_MODE" != "off" ]]; then
|