codex-ralph 0.6.2 → 0.6.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/README.md +3 -0
- package/agent/ralph-loop.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,6 +67,9 @@ Acceptance criteria: Free-form acceptance criteria.
|
|
|
67
67
|
|
|
68
68
|
## Changelog
|
|
69
69
|
|
|
70
|
+
### 0.6.3
|
|
71
|
+
- Feat: Added custom flags (--yolo, --no-sandbox, --approval-mode yolo) for Gemini agent command.
|
|
72
|
+
|
|
70
73
|
### 0.6.2
|
|
71
74
|
- Fix: Further corrected Gemini agent command to use positional argument instead of stdin.
|
|
72
75
|
|
package/agent/ralph-loop.sh
CHANGED
|
@@ -256,7 +256,7 @@ while true; do
|
|
|
256
256
|
if [[ "$USE_CURSOR_AGENT" == "true" ]]; then
|
|
257
257
|
cursor-agent -f -p < "$prompt_tmp"
|
|
258
258
|
elif [[ "$USE_GEMINI_AGENT" == "true" ]]; then
|
|
259
|
-
gemini "$(cat "$prompt_tmp")"
|
|
259
|
+
gemini --yolo --no-sandbox --approval-mode yolo "$(cat "$prompt_tmp")"
|
|
260
260
|
else
|
|
261
261
|
codex exec - < "$prompt_tmp"
|
|
262
262
|
fi
|