npx claudepluginhub tal/plugin-marketplace --plugin karabinerPersonal plugin marketplace for both Claude Code and Codex.
Add the marketplace from inside Claude Code:
/plugin marketplace add tal/plugin-marketplace
Then install a plugin:
/plugin install <plugin-name>@tal-marketplace
For example:
/plugin install sort@tal-marketplace
/plugin install plan-refiner@tal-marketplace
/plugin install smart-notifications@tal-marketplace
Available plugins: tal, smart-notifications, plan-refiner, karabiner, sort.
Alternatively, register the marketplace in ~/.claude/settings.json:
{
"extraKnownMarketplaces": {
"tal-marketplace": {
"source": {
"source": "github",
"repo": "tal/plugin-marketplace"
}
}
},
"enabledPlugins": {
"plugin-name@tal-marketplace": true
}
}
Add the marketplace:
codex plugin marketplace add tal/plugin-marketplace
Then install a plugin:
codex plugin install <plugin-name>@tal-marketplace
Each plugin lives under plugins/<plugin-name>/ and can expose metadata for both clients side by side:
plugins/my-plugin/
.claude-plugin/
plugin.json
.codex-plugin/
plugin.json
commands/
skills/
agents/
hooks/
Marketplace catalogs live at:
.claude-plugin/marketplace.json.agents/plugins/marketplace.jsonplugins/.plugins/my-plugin/.claude-plugin/plugin.json if the plugin should be installable from Claude Code.plugins/my-plugin/.codex-plugin/plugin.json if the plugin should be installable from Codex.Claude entry:
{
"name": "my-plugin",
"source": "./plugins/my-plugin",
"description": "What the plugin does",
"version": "0.1.0"
}
Codex entry:
{
"name": "my-plugin",
"source": {
"source": "local",
"path": "./plugins/my-plugin"
},
"policy": {
"installation": "AVAILABLE",
"authentication": "ON_INSTALL"
},
"category": "Productivity"
}
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Creative skill for generating algorithmic and generative art. Produces visual designs using mathematical patterns, fractals, and procedural generation.
Frontend design skill for UI/UX implementation
Humanise text and remove AI writing patterns. Detects and fixes 24 AI tell-tales including inflated language, promotional tone, AI vocabulary, filler phrases, sycophantic tone, and formulaic structure.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). Proactively activates in projects with cacheComponents: true, providing patterns for 'use cache' directive, cacheLife(), cacheTag(), cache invalidation, and parameter permutation rendering.