You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Forward raw arguments directly to the underlying agent CLI (Codex or Claude). This is useful for advanced flags or experimental options exposed by the tools.
102
+
103
+
```bash
104
+
# Single tokens (repeatable)
105
+
pitaya "fix bug" --plugin codex \
106
+
--cli-arg -c \
107
+
--cli-arg 'feature_flag=true' \
108
+
--cli-arg --no-color
109
+
110
+
# Quoted list (recommended for ordered sequences)
111
+
pitaya "refactor module" --plugin codex \
112
+
--cli-args '-c model="gpt-4o-mini" --dry-run -v'
113
+
114
+
# Mix-and-match
115
+
pitaya "task" --plugin claude-code \
116
+
--cli-arg --verbose \
117
+
--cli-args '--max-turns 8'
118
+
```
119
+
120
+
Notes
121
+
122
+
- Passthrough args are inserted before the final prompt position.
123
+
-`--cli-args` uses POSIX shlex splitting; quote values that contain spaces.
124
+
- If both forms are provided, Pitaya combines all `--cli-arg` tokens followed by tokens from `--cli-args`. For strict ordering, prefer a single `--cli-args` string.
0 commit comments