← ClaudeAtlas

codex-changeloglisted

This skill should be used when the user asks to check for new Codex CLI (codex-cli) releases, "what changed in Codex", "any Codex updates", "check codex releases", "diff the codex version", or wants Codex CLI releases reviewed for changes relevant to THIS repo's Codex bridge. Reads a locally-stored last-checked codex-cli stable version, lists GitHub releases for openai/codex, reports changes relevant to the plugin's Codex integration (bridge argv, sandbox, exec/resume, JSONL output), and offers to advance the stored version.
zeikar/hyperclaude · ★ 3 · AI & Automation · score 74
Install: claude install-skill zeikar/hyperclaude
# codex-changelog — Codex CLI release watch (hyperclaude bridge relevance) Repo-local dev tool (NOT a plugin skill). Compare a stored "last-checked" codex-cli STABLE version against the latest stable release, mine the release notes in between, and report only what touches this repo's Codex bridge — then optionally advance the stored version so the next run diffs from here. The value is not "summarize Codex releases" — it is **mapping generic Codex CLI changes onto the specific surface of the hyperclaude bridge** (the only Codex-spawning code in the plugin) and verifying impact against the real bridge files. ## Source (differs from cc-changelog) Codex's `CHANGELOG.md` only points at GitHub Releases — it is NOT a per-version file. So the authoritative source is the **GitHub Releases of `openai/codex`**, read via `gh` (already authed in this repo): - `gh release list --repo openai/codex --limit <N>` — tags look like `rust-v0.142.5` (stable) and `rust-v0.143.0-alpha.NN` (pre-release). The row marked `Latest` is the current stable. - `gh release view <tag> --repo openai/codex` — the per-release notes. Step 2's `get-releases.mjs` helper wraps both calls (list → filter to new stables → per-new-stable view), so you don't invoke `gh` by hand in the normal path. Fallback if `gh` is unavailable: `WebFetch https://github.com/openai/codex/releases`. **Track STABLE, note alphas.** The plugin runs against the installed stable codex, so the version diff gates on stable→stable. The