Prompt capture
Bash tool description
10 model strings share this prompt. 1 line differs between them; everything else is identical.
1Executes a bash command and returns its output.
3- Working directory persists between calls, but prefer absolute paths — `cd` in a compound command can trigger a permission prompt. Shell state (env vars, functions) does not persist; the shell is initialized from the user's profile.
4- IMPORTANT: Avoid using this tool to run `cat`, `head`, `tail`, `sed`, `awk`, or `echo` commands, unless explicitly instructed or after you have verified that a dedicated tool cannot accomplish your task. Instead, use the appropriate dedicated tool as this will provide a much better experience for the user.
5- `timeout` is in milliseconds: default 120000, max 600000.
6- `run_in_background` runs the command detached: it keeps running across turns and re-invokes you when it exits. No `&` needed.
8# Git
9- Interactive flags (`-i`, e.g. `git rebase -i`, `git add -i`) are not supported in this environment.
10- Use the `gh` CLI for GitHub operations (PRs, issues, API).
11- Commit or push only when the user asks. If on the default branch, branch first.
12- End git commit messages with:
13Co-Authored-By: Claude Opus 4.8 <[email protected]>1
(unset), claude-opus-4-0, claude-opus-4-1, opusCo-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
14- End PR bodies with:
15🤖 Generated with [Claude Code](https://claude.com/claude-code)