Skip to content

Instantly share code, notes, and snippets.

@soldni
Last active March 23, 2026 15:52
Show Gist options
  • Select an option

  • Save soldni/e50e65f3ad27ed278c94b34f16ca3c19 to your computer and use it in GitHub Desktop.

Select an option

Save soldni/e50e65f3ad27ed278c94b34f16ca3c19 to your computer and use it in GitHub Desktop.
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