Skip to content
Open
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 internal/agent/codex.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (a *CodexAgent) Execute(ctx context.Context, prompt string, workDir string)
}

// Use codex CLI in full-auto mode
cmd := exec.CommandContext(ctx, a.cliPath, "--full-auto-net", "exec", prompt)
cmd := exec.CommandContext(ctx, a.cliPath, "--full-auto", "exec", prompt)
cmd.Dir = workDir

var stdout, stderr bytes.Buffer
Expand All @@ -63,7 +63,7 @@ func (a *CodexAgent) ExecuteWithStream(ctx context.Context, prompt string, workD
}

// Use codex CLI in full-auto mode
cmd := exec.CommandContext(ctx, a.cliPath, "--full-auto-net", "exec", prompt)
cmd := exec.CommandContext(ctx, a.cliPath, "--full-auto", "exec", prompt)
cmd.Dir = workDir

var stdout bytes.Buffer
Expand Down