Last active
September 11, 2025 01:41
-
-
Save imWildCat/fac4393ce1a6434540c1cdea09cf775c to your computer and use it in GitHub Desktop.
codex-enhanced by Ian Nuttall on X
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
# from: <https://x.com/iannuttall/status/1965090297630826931> | |
cdx() { | |
if [[ "$1" == "update" ]]; then | |
npm install -g @openai/codex@latest | |
else | |
codex -m gpt-5 --yolo -c model_reasoning_effort="high" --search "$@" | |
fi | |
} | |
# Note: with auto confirmation. use at your own risk. thanks! |
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
# from: <https://x.com/iannuttall/status/1965090297630826931> | |
cdx() { | |
if [[ "$1" == "update" ]]; then | |
npm install -g @openai/codex@latest | |
else | |
codex -m gpt-5 -c model_reasoning_effort="high" --search "$@" | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to use it?
Put into your rc files like
~/.zshrc
or~/.bashrc
Source
https://x.com/iannuttall/status/1965090297630826931