Last active
March 23, 2026 15:52
-
-
Save soldni/e50e65f3ad27ed278c94b34f16ca3c19 to your computer and use it in GitHub Desktop.
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
| function codex-fast() { | |
| has_codex=$(which codex 2>/dev/null) | |
| if [ -z "${has_codex}" ]; then | |
| echo "Codex CLI not found" | |
| return 1 | |
| fi | |
| codex exec \ | |
| --model "gpt-5.3-codex-spark" \ | |
| --sandbox "danger-full-access" \ | |
| --ephemeral \ | |
| --skip-git-repo-check \ | |
| --progress-cursor \ | |
| "$@" | |
| return 0 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment