Dev tools

is-gpt-nerfed checks whether the Codex model a user selected is the model that answered, and flags silent swaps

September 18, 2026 at 2:20 AM PT

GitHub social card for kiyoakii/is-gpt-nerfed showing the repository name and description

Image: GitHub

Why it mattersTeams paying for a top-tier model on real work can now see whether the server actually served that model, instead of trusting the label alone.

The is-gpt-nerfed plugin, released this week for OpenAI Codex on macOS, reads the model and reasoning effort Codex recorded for each turn and reports when they change without the user changing them. It also runs a scheduled probe: three ephemeral forks of the current session, each asked for about 300 "random" numbers, then compared against a fingerprint bank to decide whether the model the user selected is the model that answered.

The repository, published by the user kiyoakii under MIT on 2026-09-15, had 118 stars three days after launch when checked on 2026-09-18. It targets macOS 26 and requires a Codex build with plugin hooks, tested on Codex 0.154.

What it reports

The plugin lists seven verdicts per session. Match means the selected model answered. Suspicious means the fingerprint leans elsewhere but not confidently. Downgrade, Upgrade and Rerouted are confident mismatches where the top candidate scores 80 percent or more and the selected model scores 20 percent or less. Downgraded and Upgraded are silent switches Codex itself recorded. Unlisted means the selected model is not in the fingerprint bank yet. Invalid covers tool use, refusals and network errors, and the row keeps its last verdict.

A mismatch surfaces as a macOS notification, a message in the session and a red face in the menu bar. A match is not announced.

How the fingerprint works

The fingerprints come from ModelTrace, a separate MIT-licensed project by xqy2006 published on 2026-08-27 (451 stars at check time). Its author writes that a language model picks random numbers with a bias characteristic of that model, and that the calibrated bank turns three answers into a fingerprint with 100 percent accuracy in cross-validation on the models it covers. The is-gpt-nerfed README repeats that figure and adds two limits worth naming: the bank is closed-set, so a model outside it is mapped to its nearest look-alike, and if a server swaps weights while keeping the name, only the fingerprint or a smaller context window can show it.

Cost and privacy

Each probe costs three short answers on the user's own Codex account. Fresh-session probes and per-session probes are separate cadences the user configures, defaulting to every 30 minutes of activity per session and manual for a brand-new session. The plugin reads ~/.codex locally, writes probes and logs to ~/.codex/is-gpt-nerfed, and makes one network request of its own: a ten-minute poll to GitHub for a new release tag, which is switchable off.

What is worth watching

Reveneau's read is that measurement tools of this shape are what shift a vague complaint into a claim a paying customer can defend. "The output feels worse this week" is not something a provider has to answer. A verdict log showing that gpt-6-astra sessions were served a smaller model on a given afternoon is a different conversation, and one whose evidence exists on the customer's disk instead of the provider's. The closed-set bank is the honest weakness, and the README says so: a truly new model will show as its nearest neighbour until the bank is updated.

Source

Source: GitHub

This item was written by an AI system from the linked source. Reveneau is responsible for what it publishes.

More from AI News

OpenAI hires the Git AI founders to work inside Codex, and the standalone company will likely wind down

Aidan Cunniffe and Sasha Varlamov, the founders of the open-source Git AI tool that tracks how much code each AI coding agent writes and what it costs, are joining the OpenAI Codex team, and the standalone company they left Atlassian to build will likely wind down.

Source: PressDev tools

OpenSpec crosses 68,000 stars as a shared spec framework for 40 AI coding assistants, and publishes a v1.13.1 release the same day

OpenSpec is an MIT-licensed spec framework by Fission-AI that works with Claude Code, Codex, Cursor, Copilot, Gemini CLI, Zed and 34 other AI coding assistants, and it reached 68,579 GitHub stars a day after its v1.13.1 release.

Source: Hacker NewsDev tools

Tokentab reads Claude Code, Codex and Gemini CLI logs and reports the bill by model, project and day

Tokentab is a new MIT-licensed CLI that reads the session logs Claude Code, Codex and Gemini CLI already write to disk and totals the token cost by model, project and day, and the repository has picked up 1,139 stars in nine days.

Source: GitHubDev tools