← All plugins
skill-routing-kit
v0.1.0+codex.20260604032338Local-first skill and plugin routing guard, registry, and diagnostics for Codex.
Codex1 skill
by ZhonghaoMIT169updated 1 month ago
Source
git clone https://github.com/juew/Skill-Routing-KitClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
skill-routing-kit/
├── .codex-plugin/plugin.json└── skills/skill-router/SKILL.md
Skills1
skill-routerskills/skill-router/SKILL.md
Use when the user explicitly asks to diagnose or improve Codex skill/plugin routing, determine which skill or plugin should handle a request, refresh or check a skill registry, investigate why a skill/plugin did not trigger, or review skill descriptions for trigger quality. Do not use for ordinary task execution when a concrete domain skill clearly applies, unless routing is ambiguous or the user asks for routing.
Manifests1
.codex-plugin/plugin.json
{
"name": "skill-routing-kit",
"version": "0.1.0+codex.20260604032338",
"description": "Local-first skill and plugin routing guard, registry, and diagnostics for Codex.",
"author": {
"name": "Zhonghao"
},
"repository": "https://github.com/juew/Skill-Routing-Kit",
"license": "MIT",
"keywords": [
"codex",
"codex-plugin",
"skill-routing",
"ai-agents",
"local-first",
"developer-tools"
],
"skills": "./skills/",
"interface": {
"displayName": "Skill Routing Kit",
"shortDescription": "Local-first skill routing guard and diagnostics.",
"longDescription": "Improve Codex skill and plugin hit rate with an always-on AGENTS routing guard, a local capability registry, and explicit diagnostic scripts.",
"defaultPrompt": "Use Skill Routing Kit to diagnose which Codex skill or plugin should handle a request, refresh the local capability registry, or improve skill routing hit rate.",
"developerName": "Zhonghao",
"category": "Productivity",
"brandColor": "#22D3EE",
"composerIcon": "./assets/composer-icon.png",
"logo": "./assets/logo.png",
"capabilities": [
"Skill routing guard",
"Local capability registry",
"Routing diagnostics",
"Registry maintenance"
]
}
}