Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions auto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Usage: ./auto.sh [--full-auto] "task description"
#
# Options:
# --full-auto Skip all permission prompts (claude --dangerously-skip-permissions + codex --full-auto)
# --full-auto Skip all permission prompts (claude --dangerously-skip-permissions + codex --dangerously-bypass-approvals-and-sandbox)
#
# Requirements: tmux, fswatch (macOS) or inotifywait (Linux)
#
Expand Down Expand Up @@ -42,7 +42,7 @@ fi
# Build agent commands based on --full-auto
if [[ "$FULL_AUTO" == true ]]; then
CLAUDE_CMD="claude --dangerously-skip-permissions"
CODEX_CMD="codex --full-auto"
CODEX_CMD="codex --dangerously-bypass-approvals-and-sandbox"
else
CLAUDE_CMD="claude"
CODEX_CMD="codex"
Expand Down
2 changes: 1 addition & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ralph-lisa-loop",
"version": "0.3.13",
"version": "0.3.14",
"description": "Turn-based dual-agent collaboration: Ralph codes, Lisa reviews, consensus required.",
"bin": {
"ralph-lisa": "dist/cli.js"
Expand Down
4 changes: 2 additions & 2 deletions cli/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1726,7 +1726,7 @@ export function cmdStart(args: string[]): void {
const task = filteredArgs.join(" ");

const claudeCmd = fullAuto ? "claude --dangerously-skip-permissions" : "claude";
const codexCmd = fullAuto ? "codex --full-auto" : "codex";
const codexCmd = fullAuto ? "codex --dangerously-bypass-approvals-and-sandbox" : "codex";

console.log(line());
console.log("Ralph-Lisa Loop - Start");
Expand Down Expand Up @@ -1870,7 +1870,7 @@ export function cmdAuto(args: string[]): void {
const task = filteredArgs.join(" ");

const claudeCmd = fullAuto ? "claude --dangerously-skip-permissions" : "claude";
const codexCmd = fullAuto ? "codex --full-auto" : "codex";
const codexCmd = fullAuto ? "codex --dangerously-bypass-approvals-and-sandbox" : "codex";

console.log(line());
console.log("Ralph-Lisa Loop - Auto Mode");
Expand Down
2 changes: 1 addition & 1 deletion docs/en/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ ralph-lisa auto --full-auto "implement login feature"
| | `auto` | `auto --full-auto` |
|--|--------|-------------------|
| Ralph (Claude) | `claude` | `claude --dangerously-skip-permissions` |
| Lisa (Codex) | `codex` | `codex --full-auto` |
| Lisa (Codex) | `codex` | `codex --dangerously-bypass-approvals-and-sandbox` |
| Permission prompts | Every file/command needs approval | Skipped — agents act freely |

Use `--full-auto` when you trust both agents on the current task. Without it, permission prompts may cause the watcher to misidentify paused agents as stuck.
Expand Down
2 changes: 1 addition & 1 deletion docs/ja/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ ralph-lisa auto --full-auto "implement login feature"
| | `auto` | `auto --full-auto` |
|--|--------|-------------------|
| Ralph (Claude) | `claude` | `claude --dangerously-skip-permissions` |
| Lisa (Codex) | `codex` | `codex --full-auto` |
| Lisa (Codex) | `codex` | `codex --dangerously-bypass-approvals-and-sandbox` |
| 許可プロンプト | ファイル/コマンド操作ごとに確認が必要 | スキップ — エージェントが自由に実行 |

両エージェントを信頼できる場合は `--full-auto` を使用してください。付けない場合、許可プロンプトにより watcher がエージェントのスタックを誤検出する可能性があります。
Expand Down
2 changes: 1 addition & 1 deletion docs/zh-CN/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ ralph-lisa auto --full-auto "implement login feature"
| | `auto` | `auto --full-auto` |
|--|--------|-------------------|
| Ralph (Claude) | `claude` | `claude --dangerously-skip-permissions` |
| Lisa (Codex) | `codex` | `codex --full-auto` |
| Lisa (Codex) | `codex` | `codex --dangerously-bypass-approvals-and-sandbox` |
| 权限提示 | 每次文件/命令操作需确认 | 跳过——agent 直接执行 |

当你信任两个 agent 时使用 `--full-auto`。不加时,权限提示可能导致 watcher 误判 agent 卡住。
Expand Down
4 changes: 2 additions & 2 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Usage: ./start.sh [--full-auto] [task-description]
#
# Options:
# --full-auto Skip all permission prompts (claude --dangerously-skip-permissions + codex --full-auto)
# --full-auto Skip all permission prompts (claude --dangerously-skip-permissions + codex --dangerously-bypass-approvals-and-sandbox)
#
# Supports: macOS Terminal, iTerm2, tmux

Expand Down Expand Up @@ -40,7 +40,7 @@ fi
# Build agent commands based on --full-auto
if [[ "$FULL_AUTO" == true ]]; then
CLAUDE_CMD="claude --dangerously-skip-permissions"
CODEX_CMD="codex --full-auto"
CODEX_CMD="codex --dangerously-bypass-approvals-and-sandbox"
else
CLAUDE_CMD="claude"
CODEX_CMD="codex"
Expand Down