Created
November 15, 2025 18:34
-
-
Save bouroo/8db32f41773cfffc180dc9eb92c6beae to your computer and use it in GitHub Desktop.
ai agent cli with bunx
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
| #!/usr/bin/env sh | |
| if ! command -v bun &> /dev/null; then | |
| echo "Error: Bun is not installed. Install from https://bun.sh/" >&2 | |
| exit 1 | |
| fi | |
| exec bunx -y @anthropic-ai/claude-code "$@" |
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
| #!/usr/bin/env sh | |
| if ! command -v bun &> /dev/null; then | |
| echo "Error: Bun is not installed. Install from https://bun.sh/" >&2 | |
| exit 1 | |
| fi | |
| exec bunx -y @openai/codex "$@" |
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
| #!/usr/bin/env sh | |
| if ! command -v bun &> /dev/null; then | |
| echo "Error: Bun is not installed. Install from https://bun.sh/" >&2 | |
| exit 1 | |
| fi | |
| exec bunx -y @google/gemini-cli "$@" |
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
| #!/usr/bin/env sh | |
| if ! command -v bun &> /dev/null; then | |
| echo "Error: Bun is not installed. Install from https://bun.sh/" >&2 | |
| exit 1 | |
| fi | |
| exec bunx -y opencode-ai "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment