codex-ralph 0.6.2 → 0.6.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/README.md CHANGED
@@ -67,6 +67,12 @@ Acceptance criteria: Free-form acceptance criteria.
67
67
 
68
68
  ## Changelog
69
69
 
70
+ ### 0.6.4
71
+ - Fix: Removed conflicting `--yolo` flag from Gemini agent command.
72
+
73
+ ### 0.6.3
74
+ - Feat: Added custom flags (--yolo, --no-sandbox, --approval-mode yolo) for Gemini agent command.
75
+
70
76
  ### 0.6.2
71
77
  - Fix: Further corrected Gemini agent command to use positional argument instead of stdin.
72
78
 
@@ -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 --no-sandbox --approval-mode yolo "$(cat "$prompt_tmp")"
260
260
  else
261
261
  codex exec - < "$prompt_tmp"
262
262
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-ralph",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "Ralph Loop sprint runner for Codex.",
5
5
  "bin": {
6
6
  "ralph-loop": "agent/ralph-loop.sh"