Skip to content
Merged
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 commands/tri-review.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Retrieve result with `/codex:result` when done. Omit `--model` to use the accoun

```bash
if [ "$HAS_CODEX_CLI" = "yes" ]; then
codex exec --full-auto "{prompt} $(cat /tmp/tri-review-diff.txt)" \
cat /tmp/tri-review-diff.txt | codex exec --full-auto "{prompt}" \
> /tmp/tri-review-codex.txt 2>&1 &
CODEX_PID=$!
fi
Expand All @@ -134,7 +134,7 @@ Retrieve result with `/gemini:result` when done. Omit `--model` to use the accou

```bash
if [ "$HAS_GEMINI_CLI" = "yes" ]; then
gemini -p "{prompt} $(cat /tmp/tri-review-diff.txt)" \
cat /tmp/tri-review-diff.txt | gemini -p "{prompt}" \
-y --output-format text \
> /tmp/tri-review-gemini.txt 2>&1 &
GEMINI_PID=$!
Expand Down
2 changes: 1 addition & 1 deletion commands/tri-security.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Retrieve result with `/gemini:result` when done. Omit `--model` to use the accou

```bash
if [ "$HAS_GEMINI_CLI" = "yes" ]; then
gemini -p "{prompt} $(cat /tmp/tri-security-diff.txt)" -y \
cat /tmp/tri-security-diff.txt | gemini -p "{prompt}" -y \
--output-format text > /tmp/tri-security-gemini.txt 2>&1 &
fi

Expand Down
Loading