Skills Router — trust-gated install, update indexing, and routing for AI-agent skills and plugins
Project description
Skills Router
English | Español | 简体中文 | 日本語 | Deutsch | Français
skills-router is the CLI command and PyPI package name. The npm wrapper package
is @the-long-ride/skills-router.
Skills Router is an AI-agent skillset manager. It reviews, registers, discovers, indexes, compares, and routes AI-agent skills/plugins so a host agent can use the right capability without silently taking over package resources.
Skills Router is not a general package manager. It owns metadata, decisions, audit logs, and routing state. Package files, virtual environments, IDE extensions, and host-agent skill directories stay owned by the tool that installed them.
Why skills-router?
AI-agent skills are useful, but they get scattered across CLIs, IDEs, MCP servers, global folders, workspace folders, and host-specific package managers. That makes it hard to answer simple questions: which skill should this agent use, who approved it, where is it active, and what happens if another package overlaps with it?
skills-router gives agents one shared control plane for that problem. It lets
you install or discover skills once, review them through trust and behavior
checks, and route each agent to the right capability without copying package
files or stuffing huge route tables into prompts. The package manager still
owns package resources; Skills Router owns the decisions, metadata, audit
trail, and routing layer.
What It Does
- Reviews complete skill/plugin manifests through trust, dependency, semantic, capability, and health checks.
- Stores approved package metadata in a Brain Index.
- Writes
skills-router.jsonrules that host agents can query through MCP or CLI. - Installs a skill once for all configured AI-agent hosts with
--all-agentsor/skills-router install <package> for all agents. - Supports narrowed all-agent installs with target lists such as
--agent-target codex,cursor. - Enforces target-aware routing when agents call
route_taskorskills-router route --target <agent>. - Supports the default all-agent host set:
antigravity,antigravity-cli,antigravity-ide,codex,claude,hermes-agent,opencode,cline,cursor, andwindsurf. - Treats partial installs as selective route activation, not partial package extraction.
- Removes Skills Router-owned metadata/routing on uninstall, then re-indexes the remaining route surface.
- Reconciles routes with
/skills-router index. - Discovers externally installed workspace/global skills with
/skills-router refine. - Scans shared and host-specific workspace/global skill directories, including nested system skill folders.
- Keeps newly discovered external routes at
needs_selectionuntil the human confirms activation. - Publishes release descriptions from the matching
CHANGELOG.mdsection on tag pushes, with package links appended by CI.
What It Does Not Do
- It does not delete package-owned files, repositories, virtual environments, or IDE/plugin resources.
- It does not replace
pip,npm, IDE extension managers, or host-agent plugin managers. - It does not auto-approve trust warnings, dependency conflicts, duplicate routes, or unknown behavior unless the human explicitly says to approve risk.
- It does not inject large route tables into agent prompts. Agents should query Skills Router dynamically.
Architecture
flowchart LR
Human[Human] --> Host[AI agent host]
Host --> Bridge[Agent Bridge]
Host --> MCP[MCP stdio server]
Host --> CLI[CLI]
Bridge --> Parser[Slash parser]
Parser --> Executor[Bridge executor]
MCP --> Executor
CLI --> Commands[Strict commands]
Commands --> Install[Install pipeline]
Executor --> Install
Commands --> Reconcile[Index and refine]
Executor --> Reconcile
Commands --> Lookup[Route lookup]
Executor --> Lookup
Commands --> Remove[Uninstall metadata]
Executor --> Remove
Install --> Resolver[Registry resolver]
Resolver --> Trust[Trust gate]
Trust --> Deps[Dependency resolver]
Deps --> Semantic[Semantic evaluator]
Semantic --> Capability[Capability checker]
Capability --> WG[Workspace/global prompt]
WG --> Health[Health check]
Reconcile --> Discovery[Skill discovery]
Discovery --> SkillDirs[Workspace/global skill dirs]
Discovery --> GlobalIndex[Global Skills Router index]
Reconcile --> Conflict[Conflict detector]
Install --> Store[(Brain Index)]
Reconcile --> Store
Conflict --> Routes[(skills-router.json)]
Lookup --> Routes
Remove --> Store
Remove --> Routes
Remove --> Lock
Remove --> Audit
Install --> Lock[(Lockfile)]
Install --> Audit[(Audit log)]
Core Workflow
flowchart TD
A[Human asks an AI agent] --> B{Request shape}
B -->|/skills-router install pkg for me| C[Parse slash request]
B -->|MCP structured call| D[Call MCP tool]
B -->|Strict CLI| E[Run command]
C --> F[Resolve package or manifest]
D --> F
E --> F
F --> G[Trust and dependency checks]
G -->|Hard reject| H[Stop and summarize]
G -->|Review needed| I[Ask human]
I -->|Cancel| H
I -->|Approve| J[Semantic and capability comparison]
G -->|Safe| J
J -->|Overlap| K[Recommend route choice]
K --> L[Human selects routing]
J -->|No conflict| M[Persist metadata]
L --> M
M --> N[Write routing and lockfile]
N --> O[Health check]
O -->|Fail| P[Clean Skills Router state]
O -->|Pass| Q[Audit and short summary]
R[Host package manager changes files] --> S["/skills-router index"]
T[External skill appears] --> U["/skills-router refine"]
S --> V[Refresh routes and mark stale]
U --> W[Discover and import metadata]
V --> X[Recommend route decisions]
W --> X
Install
# Core local install
pip install -e .
# Optional real embedding support
pip install -e ".[ml]"
# Optional pgvector backend
pip install -e ".[pgvector]"
# Run through npm/npx
npx @the-long-ride/skills-router --help
The default storage backend is JSON-backed local memory under
~/.skills-router. A local Node wrapper is available in skills-router-npx/ for
npx and IDE workflows; see GUIDELINE.md.
Quick Start
# Review and register a local manifest
skills-router install examples/sample_manifests/weather_tool.json --scope global
# Review and register by registry package name
skills-router install writer-pack --package-type skillset --scope workspace:codex-local
# Install once and make routes visible to all configured AI-agent hosts
skills-router install writer-pack --package-type skillset --all-agents --json
# Install once but expose routes only to selected agent hosts
skills-router install writer-pack --package-type skillset --all-agents --agent-target codex,cursor --json
# Install the full package but leave routes inactive until selection
skills-router install writer-pack --package-type skillset --routing-mode selective_routes --scope workspace:codex-local --json
# Preview review decisions without writing state
skills-router install writer-pack --dry-run --explain --json
# Remove Skills Router metadata/routing only
skills-router uninstall writer-pack --json
# Reconcile already indexed packages and routes
skills-router index --json
# Discover workspace/global host-agent skills and refine routes
skills-router refine --json
skills-router refine writer-pack engram --json
skills-router refine --workspace-scope workspace:codex-local --json
# Ask Skills Router which route matches a task for the current host
skills-router route "draft article about release notes" --scope workspace:codex-local --target codex --json
# Let an AI-agent host execute a human slash request
skills-router chat "/skills-router install writer-pack for me" --target codex --agent-id codex-local --json
skills-router chat "/skills-router install writer-pack for all installed agents" --target codex --agent-id codex-local --json
skills-router chat "/skills-router refine writer-pack engram" --target codex --agent-id codex-local --json
# Expose Skills Router through stdio JSON-RPC
skills-router mcp
# Render bridge instructions for a host
skills-router prompt --target codex
skills-router prompt --list
Command Surface
| Command | Purpose |
|---|---|
install <manifest-or-package> |
Resolve, review, register, and route a package. |
index |
Rebuild indexed vectors/routes and detect conflicts or stale routes. |
refine [skillset ...] |
Discover external skills, import metadata, and reconcile routes. |
route <task> |
Query active or review-needed routes for a task. |
uninstall <tool_id> |
Remove Skills Router-owned metadata/routing only. |
list |
List indexed tools. |
inspect <tool_id> |
Print one Brain Index entry. |
audit |
Query audit events. |
watch |
Run Registry Watch once or as a daemon. |
prompt |
Render host-specific bridge instructions. |
chat |
Parse and execute chat-shaped /skills-router requests. |
mcp |
Run the local stdio JSON-RPC tool server. |
One-Time All-Agent Installs
All-agent installs are a core workflow:
skills-router install writer-pack --package-type skillset --all-agents --json
The package is still registered once in Skills Router. The generated routes are global, and each configured host reaches them through MCP or the CLI bridge. Skills Router owns metadata and routing only; package resources remain owned by the host package manager or skill installer.
Default all-agent targets:
antigravity, antigravity-cli, antigravity-ide, codex, claude,
hermes-agent, opencode, cline, cursor, windsurf
Use --agent-target when a skill should apply to only part of that set:
skills-router install writer-pack \
--package-type skillset \
--all-agents \
--agent-target codex,cursor \
--json
When a target list is stored, route lookup respects it only when the caller identifies the current host:
skills-router route "draft release notes" --target codex --json
skills-router route "draft release notes" --target cursor --json
For chat-shaped requests, agents can use:
/skills-router install <package> for all installed agents
Routing Model
Skills Router separates package presence from agent activation:
- Package presence: the host package manager installs or updates the full package.
- Brain Index: Skills Router stores manifest, trust, dependency, vector, behavior, and scope metadata.
- Routing: Skills Router writes
skills-router.jsonpackages and rules. - Selection: route conflicts and externally discovered skills use
needs_selectionuntil the human confirms activation. - Lookup: agents call MCP
route_taskorskills-router routewith their target instead of reading route files directly. - Stale routes:
indexmarks missing packagesmissing_from_index; it does not delete package files.
Refine And Discovery
skills-router refine closes the gap where a human installs skills outside the
workspace, for example through npx, a host-agent skill installer, or a global
Codex skill directory.
Discovery sources:
- Workspace skill dirs:
.agents/skillsplus host-specific dirs such as.codex/skills,.claude/skills,.cline/skills,.cursor/skills,.windsurf/skills,.opencode/skills,.agent/skills,.antigravity/skills,.hermes/skills, and.kiro/skills - Global skill dirs:
$CODEX_HOME/skills,~/.codex/skills, and the matching host-specific global skill dirs - Nested skill folders, including
.system/.../SKILL.md - Global Skills Router state from
global_data_dir
Blank refine discovers all visible installed skills. Named refine discovers and
reports only matching skillsets while comparing them against the visible route
surface. Chat-shaped /skills-router refine assigns workspace-discovered routes
to workspace:<agent-id> while still comparing against all visible scopes.
Slash Commands For Agents
The Agent Bridge accepts natural human requests and turns them into strict operations:
/skills-router install <package> for me
/skills-router install <package> for all agents
/skills-router install <package> globally dry run
/skills-router install <package> skillset only needed skills for me
/skills-router uninstall <tool_id>
/skills-router index
/skills-router refine
/skills-router refine <skillset> <skillset>
/skills-router route <task>
/skills-router list
/skills-router inspect <tool_id>
/skills-router audit --tool <tool_id>
/skills-router watch --once
The bridge defaults install scope to workspace:<agent-id> unless the human
says global. for all agents means one global install for the default
all-agent target set; custom --agent-target lists are enforced by
target-aware route lookup. The parser removes filler words such as for me and
returns human_summary for short agent replies.
MCP Tool Surface
skills-router mcp exposes:
get_agent_promptparse_slash_commandrun_slash_commandinstall_tooluninstall_toolindex_routesrefine_routesroute_tasklist_toolsinspect_toolwatch_once
Use run_slash_command for human chat text. Use the structured tools only when
the host already has clean arguments. MCP content text is intentionally
compact; full machine-readable data stays in structuredContent.
Structured MCP install calls can pass all_agents: true and optional
target_agents. Structured route calls can pass target so stored target
lists are enforced for the calling host.
Supported Agent Hosts
| Target | Instruction locations |
|---|---|
antigravity |
.agent/rules/skills-router.md, AGENTS.md |
antigravity-cli |
.agent/rules/skills-router.md, AGENTS.md |
antigravity-ide |
.agent/rules/skills-router.md, .antigravity/rules/skills-router.md, AGENTS.md |
codex |
AGENTS.md |
cline |
.clinerules/skills-router.md, AGENTS.md |
cursor |
.cursor/rules/skills-router.md, AGENTS.md |
kiro |
.kiro/steering/skills-router.md, AGENTS.md |
claude |
CLAUDE.md, .claude/commands/skills-router.md |
github-copilot |
.github/copilot-instructions.md, AGENTS.md |
opencode |
AGENTS.md, .opencode/agent/skills-router.md |
hermes-agent |
SOUL.md, AGENTS.md |
windsurf |
.windsurf/rules/skills-router.md, AGENTS.md |
Render target-specific bridge text with:
skills-router prompt --target codex
skills-router prompt --target cursor
skills-router prompt --target windsurf
skills-router prompt --target codex --detail full
The default prompt is compact so persistent agent instructions cost fewer
tokens. Use --detail full only when generating docs or debugging an
integration.
Configuration
~/.skills-router/config.json can override SkillsRouterConfig fields such as:
{
"storage_backend": "memory",
"workspace_root": "/path/to/workspace",
"workspace_skill_dirs": [".agents/skills", ".codex/skills", ".cursor/skills"],
"global_skill_dirs": ["$CODEX_HOME/skills", "~/.codex/skills", "~/.cursor/skills"],
"pgvector_dsn": "postgresql://user:pass@localhost:5432/skills_router"
}
Release Automation
The repository CI validates Python, the Node wrapper, and package builds. On
tag pushes, the workflow can publish the npm wrapper and then create or update
the GitHub release. The release description is generated from the matching
CHANGELOG.md entry and appends links to:
- the tag-specific changelog
- the PyPI package: https://pypi.org/project/skills-router/
- the npm package: https://www.npmjs.com/package/@the-long-ride/skills-router
Roadmap
- Core install review pipeline.
- Agent Bridge for popular AI-agent hosts.
- Full-package install with generated route plans.
- One-time all-agent installs with target-aware routing.
-
/skills-router indexreconciliation and conflict recommendations. -
/skills-router refinediscovery and route refinement. - Dynamic route lookup through MCP and CLI.
- Registry Watch daemon with trust degradation alerts.
- Route-choice persistence API for applying human selections.
- pgvector-native production migration.
- Dashboard for routing history, audit logs, and conflict decisions.
License
This project is licensed under the GNU General Public License (GPLv3).
Developed by the-long-ride.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file skills_router-0.0.1.tar.gz.
File metadata
- Download URL: skills_router-0.0.1.tar.gz
- Upload date:
- Size: 124.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
270908f4fc25b185e8b9fc36eec7ea825b52dd7d7bf62779eb89fdc78f3e3781
|
|
| MD5 |
40c776d60039228805c701299cdcf58b
|
|
| BLAKE2b-256 |
3bc844b439c231fdc850d238d7a519cc890802ac9cd82e6623be56de6a7f38e2
|
Provenance
The following attestation bundles were made for skills_router-0.0.1.tar.gz:
Publisher:
ci.yml on the-long-ride/skills-router
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
skills_router-0.0.1.tar.gz -
Subject digest:
270908f4fc25b185e8b9fc36eec7ea825b52dd7d7bf62779eb89fdc78f3e3781 - Sigstore transparency entry: 1740676773
- Sigstore integration time:
-
Permalink:
the-long-ride/skills-router@47a4a1709ecb3d3e373681fac04c3fdd4d9f85d4 -
Branch / Tag:
refs/tags/v0.0.1 - Owner: https://github.com/the-long-ride
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@47a4a1709ecb3d3e373681fac04c3fdd4d9f85d4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file skills_router-0.0.1-py3-none-any.whl.
File metadata
- Download URL: skills_router-0.0.1-py3-none-any.whl
- Upload date:
- Size: 114.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48c14f3696e7fab3e735cd55f6d1b69520c2a4fcc04ac501851932a3197b1afe
|
|
| MD5 |
36c1582c732d59a6082383afb6b295db
|
|
| BLAKE2b-256 |
59a94e2ad9270827e5924c68a2cde2e68f4b59279b99dd1fcc567c013fa81c54
|
Provenance
The following attestation bundles were made for skills_router-0.0.1-py3-none-any.whl:
Publisher:
ci.yml on the-long-ride/skills-router
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
skills_router-0.0.1-py3-none-any.whl -
Subject digest:
48c14f3696e7fab3e735cd55f6d1b69520c2a4fcc04ac501851932a3197b1afe - Sigstore transparency entry: 1740676802
- Sigstore integration time:
-
Permalink:
the-long-ride/skills-router@47a4a1709ecb3d3e373681fac04c3fdd4d9f85d4 -
Branch / Tag:
refs/tags/v0.0.1 - Owner: https://github.com/the-long-ride
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@47a4a1709ecb3d3e373681fac04c3fdd4d9f85d4 -
Trigger Event:
push
-
Statement type: