codex-ralph 0.6.0 → 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 +6 -0
- package/agent/ralph-loop.sh +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,6 +67,12 @@ Acceptance criteria: Free-form acceptance criteria.
|
|
|
67
67
|
|
|
68
68
|
## Changelog
|
|
69
69
|
|
|
70
|
+
### 0.6.2
|
|
71
|
+
- Fix: Further corrected Gemini agent command to use positional argument instead of stdin.
|
|
72
|
+
|
|
73
|
+
### 0.6.1
|
|
74
|
+
- Fix: Corrected the command for the Gemini agent.
|
|
75
|
+
|
|
70
76
|
### 0.6.0
|
|
71
77
|
- Add support for Gemini agent via `--gemini-agent` flag.
|
|
72
78
|
|
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
|