-
Notifications
You must be signed in to change notification settings - Fork 0
FAQ
Common questions about the Universal AI Skills Library.
A router-first skill system: one shared corpus of ~1,812 skills, one skill-router CLI, and compact per-client wrappers — so any AI agent can search, route, and load skills on demand without copying the corpus. See Home.
That's the model UASL deliberately avoids. Copying the corpus into every client bloats context and causes drift between copies. UASL keeps the corpus in one place and loads exactly one relevant skill when a prompt needs it. See Architecture.
A deterministic preflight scores the prompt against the manifest and returns route, ambiguous, or no_route — with no extra LLM call. The host AI makes the final sanity check. See Skill Router CLI.
No. Preflight routing is hermetic — it makes its decision with no network calls, which is why it's fast and reproducible. See Performance.
~1,812 per manifest.json v2.2.8 (18 core + 1,794 library). The manifest is the authority for the live count. See Skills Corpus.
30+, across three layers (skill-root wrapper, repo-instruction, hosted/MCP) — Claude Code, Codex, Cursor, Hermes, Paperclip, OpenCode, Gemini CLI, Kiro, Continue, Windsurf, Cline, Aider, OpenHands, Copilot, and more. Run skill-router sync matrix for your machine. See Agent Support Matrix.
No — the default is a wrapper install (a tiny skill that calls the router). Selected-skill and full-copy modes exist but are opt-in. See Installation & Setup.
Go (go 1.25.0). It's a single binary (skill-router) built with Cobra. It also speaks MCP. See Skill Router CLI.
The registry generator is mid-migration from Node to Go. Go is now authoritative; the Node generator remains as a byte-parity oracle until it's removed. See Node → Go Migration.
Create skills/<id>/SKILL.md with valid frontmatter, run skill-router skills validate-manifest, test with skill-router preflight, and open a PR. See Contributing.
Yes — the repo is public-safe by design. Real secrets are written only to %USERPROFILE%\.universal-ai-stack\secrets\.env (machine-local, never committed), and a gitleaks CI gate blocks accidental secret commits. See Security.
skill-router serve (stdio, JSON-RPC 2.0). It exposes route, search_skills, load_skill, and compose. See MCP Server.
MIT. See LICENSE.
Didn't find your answer? Check the Glossary, the in-repo docs/, or open an issue.
Getting started
Concepts
Reference
Project
- Roadmap & Phases
- Node → Go Migration
- Performance & Benchmarks
- Testing & CI
- Contributing
- Security
- Known Issues
Help