-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
29 lines (23 loc) · 782 Bytes
/
.env.example
File metadata and controls
29 lines (23 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Agent backend: "codex" or "claude-code"
AGENT_BACKEND=claude-code
# Claude Code model (only used when AGENT_BACKEND=claude-code)
# CLAUDE_CODE_MODEL=claude-sonnet-4-20250514
# Claude Code max conversation turns (0 = unlimited)
# CLAUDE_CODE_MAX_TURNS=50
# Claude Code permission mode: default, acceptEdits, bypassPermissions, dontAsk, plan
# bypassPermissions is recommended for automated workflows
# CLAUDE_CODE_PERMISSION_MODE=bypassPermissions
# Claude Code allowed tools (comma-separated, leave empty for all)
# CLAUDE_CODE_ALLOWED_TOOLS=Read,Write,Bash
# Codex-specific
CODEX_MODEL=
CODEX_MODEL_PLAN=
CODEX_MODEL_IMPLEMENT=
CODEX_MODEL_REVIEW_TEST=
CODEX_SANDBOX=
# Runtime behavior
PIV_DRY_RUN=0
PIV_DEV_MODE=0
PIV_LOG_LEVEL=info
PIV_LOG_PRETTY=1
PIV_EXIT_WHEN_IDLE=0