diff --git a/README.md b/README.md index 1c40299f..aee30917 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,7 @@ Third-party plugins built by the community. [PRs welcome](#contributing)! - [Tandem Workflow Architect](https://github.com/frumu-ai/tandem-codex-plugin) - Plan Tandem workflows in Codex, then validate, preview, and run them through the governed Tandem engine. - [Tartiner Labs](https://github.com/tartinerlabs/skills) - Agent skills for git workflows, GitHub automation, security audits, code refactoring, and project tooling. - [Team Skills Platform](https://github.com/Colin4k1024/tsp) - Role-based team delivery framework — Tech Lead-orchestrated 8-role system with 195+ skills, 27 specialist agents, 80+ commands, hooks, and ECC harness for Claude Code, Codex, and OpenCode. +- [Token Optimizer](https://github.com/alexgreensh/token-optimizer) - Detect and fix all three types of context waste (behavioral, structural, runtime), track quality degradation with a 7-signal scoring engine, and actively optimize sessions with smart compaction, loop detection, and continuity recovery across Claude Code, Codex, OpenCode, and OpenClaw. - [Test Gap](./plugins/mturac/test-gap) - Find lines in your diff lacking test coverage (Cobertura, lcov, coverage.json). - [TODO Harvest](./plugins/mturac/todo-harvest) - TODO/FIXME/HACK scan with `git blame` author + age. - [Tool Advisor](https://github.com/dragon1086/claude-skills) - Read-only meta-skill that scans your MCP servers, skills, plugins, and CLI tools, then suggests up to three ranked approaches (Methodical / Fast / Deep) with a copy-paste Quick Action table. diff --git a/plugins/alexgreensh/token-optimizer/.codex-plugin/plugin.json b/plugins/alexgreensh/token-optimizer/.codex-plugin/plugin.json new file mode 100644 index 00000000..3ba5cd0c --- /dev/null +++ b/plugins/alexgreensh/token-optimizer/.codex-plugin/plugin.json @@ -0,0 +1,14 @@ +{ + "name": "token-optimizer", + "version": "5.7.0", + "description": "Audit, monitor, and reduce Codex context waste with continuity helpers and explicit outline tools.", + "repository": "https://github.com/alexgreensh/token-optimizer", + "license": "PolyForm-Noncommercial-1.0.0", + "interface": { + "displayName": "Token Optimizer", + "shortDescription": "Find the ghost tokens in Codex sessions.", + "developerName": "Alex Greenshpun", + "category": "Developer Tools", + "composerIcon": "./assets/icon.png" + } +} diff --git a/plugins/alexgreensh/token-optimizer/assets/icon.png b/plugins/alexgreensh/token-optimizer/assets/icon.png new file mode 100644 index 00000000..b03ae1f4 Binary files /dev/null and b/plugins/alexgreensh/token-optimizer/assets/icon.png differ