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
6 changes: 3 additions & 3 deletions src/agents/prompts/templates/partials/git-ci.eta
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ You are on an EXISTING branch for an open pull request. Do NOT create a new PR.

Use standard git commands via Tmux for all version control.

**CRITICAL: Pass commands as argv arrays to Tmux, NOT shell strings!**
**CRITICAL: Pass command as a shell string.**

**Git command examples:**
- Status: `command=["git", "status"]`
- Diff: `command=["git", "diff"]`
- Status: `command="git status"`
- Diff: `command="git diff"`

**DO NOT use CreatePR.** The PR already exists. Just commit and push your fixes to the current branch.

Expand Down
4 changes: 2 additions & 2 deletions src/agents/prompts/templates/partials/git.eta
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

Use standard git commands via Tmux for all version control.

**CRITICAL: Pass commands as argv arrays to Tmux, NOT shell strings!**
**CRITICAL: Pass command as a shell string.**

**Git command examples:**
- Branch: `command=["git", "checkout", "-b", "feature/name"]`
- Branch: `command="git checkout -b feature/name"`

**Creating Pull Requests:**
Use the CreatePR gadget to finalize your work. It handles the full workflow automatically:
Expand Down
Loading