codex-ralph 0.6.1 → 0.6.2
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
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
|
|
259
|
+
gemini "$(cat "$prompt_tmp")"
|
|
260
260
|
else
|
|
261
261
|
codex exec - < "$prompt_tmp"
|
|
262
262
|
fi
|