From c647cda44617a299e47a10fc43eb1759cca4b450 Mon Sep 17 00:00:00 2001 From: jinku Date: Mon, 6 Apr 2026 01:43:00 -0700 Subject: [PATCH 1/2] Release v1.0.1 --- .codex-plugin/plugin.json | 2 +- CHANGELOG.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index d544fed..474ef22 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "cc", - "version": "1.0.0", + "version": "1.0.1", "description": "Claude Code Plugin for Codex. Delegate code reviews, investigations, and tracked tasks to Claude Code from inside Codex.", "author": { "name": "Sendbird, Inc.", diff --git a/CHANGELOG.md b/CHANGELOG.md index a16f35c..a5d23d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v1.0.1 + +- Install and uninstall through Codex app-server when available, with safe fallback activation on unsupported builds. +- Remove the global `cc-rescue` agent and keep only managed Codex hooks outside the plugin directory. +- Switch rescue to the built-in forwarding subagent path and harden hook self-clean behavior. +- Auto-install missing hooks during `$cc:setup`. +- Clarify background unread-result nudges and the hooks-only global state model in the README. + ## v1.0.0 - Initial public release of the Claude Code plugin for Codex. diff --git a/package-lock.json b/package-lock.json index a2f2a67..24797f8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cc-plugin-codex", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cc-plugin-codex", - "version": "1.0.0", + "version": "1.0.1", "license": "Apache-2.0", "devDependencies": { "@eslint/js": "^10.0.1", diff --git a/package.json b/package.json index 8d16b35..c0d35ec 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cc-plugin-codex", - "version": "1.0.0", + "version": "1.0.1", "description": "Claude Code Plugin for Codex by Sendbird", "type": "module", "author": { From 7510af3ee9934855337a4eef36f2d3090c8aa33c Mon Sep 17 00:00:00 2001 From: jinku Date: Mon, 6 Apr 2026 01:44:32 -0700 Subject: [PATCH 2/2] Make version sync test release-safe --- tests/version-sync.test.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/version-sync.test.mjs b/tests/version-sync.test.mjs index 9b3bb1e..d06eb12 100644 --- a/tests/version-sync.test.mjs +++ b/tests/version-sync.test.mjs @@ -30,7 +30,8 @@ function createTempRepo({ packageVersion, pluginVersion }) { describe("version sync", () => { it("asserts the live repo versions match", () => { - assert.equal(assertVersionsMatch(), "1.0.0"); + const { packageVersion } = readVersionPair(); + assert.equal(assertVersionsMatch(), packageVersion); }); it("detects mismatched versions", () => {