diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index f54b0c9..22c4602 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,9 +1,10 @@ { "name": "codex-context-window", - "version": "0.3.0", + "version": "0.3.1", "description": "Inject Codex context-window limits and usage through lifecycle hooks.", "author": { - "name": "Nikolai Leon" + "name": "Nikolai Leon", + "url": "https://github.com/nleononline" }, "homepage": "https://github.com/nleononline/codex-context-window", "repository": "https://github.com/nleononline/codex-context-window", @@ -19,12 +20,14 @@ "shortDescription": "Keep Codex aware of its context-window limit and usage.", "longDescription": "Uses bundled native binaries to read the startup context-window limit and latest server-reported token usage from the current local Codex session file, then injects compact model-visible signals at supported lifecycle points.", "developerName": "Nikolai Leon", - "category": "Productivity", + "category": "Developer Tools", "capabilities": [ "Hooks" ], + "websiteURL": "https://github.com/nleononline/codex-context-window", "defaultPrompt": [ "Show my current Codex context-window limit and usage." ] - } + }, + "hooks": "./hooks/hooks.json" } diff --git a/.github/release-notes/v0.3.1.md b/.github/release-notes/v0.3.1.md new file mode 100644 index 0000000..e125342 --- /dev/null +++ b/.github/release-notes/v0.3.1.md @@ -0,0 +1,29 @@ +Codex Context Window v0.3.1 improves how the plugin is described and classified without changing its runtime behavior. + +The plugin remains independently distributed through the `codex-context-window` marketplace. Its manifest now exposes clearer publisher and project metadata, explicitly references the bundled lifecycle hooks, and places the plugin in the Developer Tools category. + +## What changed + +- **Clearer publisher metadata** — the manifest now links the publisher name to its GitHub profile. +- **Project website in plugin details** — the interface metadata links directly to the public repository. +- **Explicit hook declaration** — the manifest points to `./hooks/hooks.json` instead of relying only on default discovery. +- **More accurate category** — Codex now presents the plugin under Developer Tools rather than Productivity. + +The native hook implementation and the context-window signals it produces are unchanged. + +## Upgrade + +Refresh the marketplace and reinstall the plugin: + +```bash +codex plugin marketplace upgrade codex-context-window +codex plugin add codex-context-window@codex-context-window +``` + +Then open a new chat or restart Codex so the refreshed plugin is loaded. + +## Compatibility + +This release has no breaking configuration changes and supports the same macOS, Linux, and Windows targets as v0.3.0. + +**Full Changelog**: https://github.com/nleononline/codex-context-window/compare/v0.3.0...v0.3.1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bb1ca44..b9b6937 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -172,7 +172,7 @@ jobs: "installation": "AVAILABLE", "authentication": "ON_INSTALL" }, - "category": "Productivity" + "category": "Developer Tools" } ] } diff --git a/Cargo.lock b/Cargo.lock index b0016e3..d5a83be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "codex-context-window" -version = "0.3.0" +version = "0.3.1" dependencies = [ "memchr", "serde", diff --git a/Cargo.toml b/Cargo.toml index 3522024..89ac870 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codex-context-window" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "Native Codex hook for reporting context-window limits and usage" license = "MIT"