-
Notifications
You must be signed in to change notification settings - Fork 96
Add Espresso plugin #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Espresso plugin #121
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -142,6 +142,7 @@ Third-party plugins built by the community. [PRs welcome](#contributing)! | |
| - [Development Skills](https://github.com/reidemeister94/development-skills) - Three-tier triage (PASS_THROUGH / LIGHT / FULL 4-phase) development workflow for Codex and Claude Code with language auto-detection (Python, Java, TypeScript, Swift, frontend) and a staff-reviewer subagent for fresh-eyes review on every change. | ||
| - [ejentum-mcp](https://github.com/ejentum/ejentum-mcp) - MCP server exposing reasoning, code, anti-deception, and memory harness tools for Codex. | ||
| - [Env Lint](./plugins/mturac/env-lint) - `.env` vs `.env.example` key parity — never prints values. | ||
| - [Espresso](https://github.com/mirkobozzetto/espresso) - Full token-saving stack in one plugin - output compression, global rules, RTK hook, Caveman ultra, GitNexus config. Detects existing setup, installs only what's missing. Works on Claude Code and Codex. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The metadata files There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Adding this README plugin entry without updating Useful? React with 👍 / 👎. |
||
| - [Flaky Detector](./plugins/mturac/flaky-detector) - Run a test command N times, report per-test flakiness %. | ||
| - [Frappe Agent](https://github.com/Dkm0315/frappe-agent) - Frappe and ERPNext coding, customization, bench, and review intelligence for Codex. | ||
| - [GrayMatter](https://github.com/ValkyrLabs/GrayMatter) - Durable memory and shared graph state for Codex and OpenClaw agents, with live ValkyrAI schema awareness. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ | |
| "name": "awesome-codex-plugins", | ||
| "version": "1.0.0", | ||
| "last_updated": "2026-05-18", | ||
| "total": 80, | ||
| "total": 81, | ||
| "categories": [ | ||
| "Development & Workflow", | ||
| "Tools & Integrations" | ||
|
|
@@ -189,6 +189,16 @@ | |
| "source": "awesome-codex-plugins", | ||
| "install_url": "https://raw.githubusercontent.com/ejentum/ejentum-mcp/HEAD/.codex-plugin/plugin.json" | ||
| }, | ||
| { | ||
| "name": "Espresso", | ||
| "url": "https://github.com/mirkobozzetto/espresso", | ||
| "owner": "mirkobozzetto", | ||
| "repo": "espresso", | ||
| "description": "Full token-saving stack - output compression, global rules, RTK hook, Caveman ultra, GitNexus config. Detects existing setup, installs only what is missing.", | ||
|
Comment on lines
+193
to
+197
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The new Espresso object is the only Useful? React with 👍 / 👎. |
||
| "category": "Development & Workflow", | ||
| "source": "awesome-codex-plugins", | ||
| "install_url": "https://raw.githubusercontent.com/mirkobozzetto/espresso/HEAD/.codex-plugin/plugin.json" | ||
| }, | ||
| { | ||
| "name": "Frappe Agent", | ||
| "url": "https://github.com/Dkm0315/frappe-agent", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| { | ||
| "name": "espresso", | ||
| "version": "2.0.0", | ||
| "description": "Full token-saving stack - output compression, global rules, RTK, Caveman, GitNexus auto-config. 70-85% fewer tokens.", | ||
| "repository": "https://github.com/mirkobozzetto/espresso", | ||
| "license": "MIT", | ||
| "interface": { | ||
| "displayName": "Espresso", | ||
| "shortDescription": "One plugin. Full token-saving stack. 70-85% fewer tokens.", | ||
| "composerIcon": "./assets/icon.svg" | ||
| } | ||
| } | ||
|
Comment on lines
+1
to
+12
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The PR description and README entry indicate that the plugin supports Claude Code and includes a |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this repo marketplace, installs are backed by mirrored bundles under
./plugins(the README documents this andscripts/generate_plugins_json.pyemits asource: {source: "local", path: ...}plus policy for each entry). This new entry is the only plugin object without asource.path, so users browsing this repo marketplace can see Espresso metadata but the installer has no local bundle to resolve even though./plugins/mirkobozzetto/espressowas added.Useful? React with 👍 / 👎.