Created
April 30, 2026 21:19
-
-
Save mbijon/b18a3d64b33046f8a362187162068670 to your computer and use it in GitHub Desktop.
ChatGPT: Add gremlins ...and how to extract the system instructions
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
| instructions=$(mktemp /tmp/gpt-5.5-instructions.XXXXXX) && \ | |
| jq -r '.models[] | select(.slug=="gpt-5.5") | .base_instructions' \ | |
| ~/.codex/models_cache.json | \ | |
| grep -vi 'goblins' > "$instructions" && \ | |
| codex -m gpt-5.5 -c "model_instructions_file=\"$instructions\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment