-
Notifications
You must be signed in to change notification settings - Fork 0
Quick Start
onfire7777 edited this page Jun 29, 2026
·
1 revision
Get the skill-router binary installed and routing in a couple of minutes.
Source: docs/QUICKSTART.md
-
Go
1.25+(the installer buildsskill-routerfrom source). - Git.
- Optional: Node.js 22 if you'll work on the registry generator or run parity checks.
git clone https://github.com/onfire7777/universal-ai-skills-library.git
cd universal-ai-skills-librarymacOS / Linux / WSL:
bash install.shWindows (PowerShell):
.\install.ps1Want only the router, not the full local AI stack? On Windows use .\install.ps1 -SkipStackInstall. See Installation & Setup for all flags and install modes.
skill-router --version
skill-router doctor # diagnose the install
skill-router doctor --json # machine-readable# Search the corpus
skill-router skill search debugging
# Load one skill (prints its SKILL.md)
skill-router skill universal-ai-skills
# Ask the router to decide
skill-router route --explain "help me write pytest fixtures"
# The deterministic preflight decision, as JSON
skill-router preflight --json "help me write pytest fixtures"skill-router skills validate-manifestThe point of UASL is that your agent calls the router automatically. The universal contract every client follows:
- On a real user prompt, run
skill-router preflight --hook-event UserPromptSubmit --json "<prompt>". - If the decision is
route, load one skill withskill-router skill <name>. - If
ambiguous, let the host AI pick from the listed candidates. - If
no_route, continue normally.
To install the compact wrapper into every detected client:
skill-router sync installed # wrapper-only, safe
skill-router sync matrix # preview what's detected (read-only)Per-client details (Codex, Claude, Cursor, Hermes, Paperclip, …) are on the Agent Support Matrix and Installation & Setup pages.
- Installation & Setup — install modes, flags, where things land
- Skill Router CLI — every command
- Architecture — how routing actually works
- Skills Corpus — what a skill is
Getting started
Concepts
Reference
Project
- Roadmap & Phases
- Node → Go Migration
- Performance & Benchmarks
- Testing & CI
- Contributing
- Security
- Known Issues
Help