fix(prompts): align git.eta and git-ci.eta to use shell string command format#984
Merged
zbigniewsobiecki merged 1 commit intodevfrom Mar 23, 2026
Merged
Conversation
nhopeatall
approved these changes
Mar 23, 2026
Collaborator
nhopeatall
left a comment
There was a problem hiding this comment.
LGTM — This is a clean, well-scoped documentation fix that eliminates a contradiction between git.eta/git-ci.eta (which incorrectly instructed argv arrays) and tmux.eta (which correctly specified shell strings). Both files now consistently say "Pass command as a shell string" with matching examples. All 7 CI checks pass.
🕵️ claude-code · claude-opus-4-6 · run details
zbigniewsobiecki
approved these changes
Mar 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
git.eta/git-ci.eta(which said argv arrays) andtmux.eta(which says shell strings)git.etaCRITICAL line now reads "Pass command as a shell string" with examplecommand="git checkout -b feature/name"git-ci.etaCRITICAL line now reads "Pass command as a shell string" with examplescommand="git status"andcommand="git diff"tmux.etais unchanged — it was already correctCloses: https://trello.com/c/69c12674dcb6b4daac354245
Test plan
npm test)git.etaline 5: "Pass command as a shell string."git.etaexample uses shell string format:command="git checkout -b feature/name"git-ci.etaline 9: "Pass command as a shell string."git-ci.etaexamples use shell string format:command="git status",command="git diff"🤖 Generated with Claude Code
🕵️ claude-code · claude-sonnet-4-6 · run details