Power-Up Library Router
The system carries a purchased library of 907 specialist Claude skills at
~/.omega/skills-library/youraipowerup/. It is deliberately kept OUT of the active
skill namespace (loading ~900 descriptions would bloat every session). This router is
the single always-on entry point: it finds the best-matching library skill for the
user's request and applies it.
When this fires
A user prompt matches one of the domains in the description above and no native OmegaOS skill is a clearly better fit. (Native audits, higgsfield generation, the design pack, and the marketing suite win when they apply — check those first.)
Procedure
Derive 1-3 search terms from the request (e.g. "cold email sequence" ->
cold email; "sell my prints on Etsy" ->etsy; "launch my course" ->course launch).Search by MEANING first (semantic RAG over the whole corpus, native + library):
omega-skills --rag "<the user's need in plain words>"This is the source of truth, never guess a skill name. It ranks the best matches (embeddings when available, BM25 otherwise) and mixes native + library skills. Use
omega-skills --powerups "<term>"for a pure keyword search of the library only. Pick the best 1-2 matches.Open the matched skill and read its full protocol:
# find its path grep -l "name: <skill-name>" ~/.omega/skills-library/youraipowerup/**/SKILL.md 2>/dev/null # or query the manifest python3 -c "import json;m=json.load(open('$HOME/.omega/skills-library/youraipowerup/MANIFEST.json'));print([s['path'] for s in m['skills'] if s['name']=='<skill-name>'])"Then
ReadthatSKILL.mdand follow it exactly, the same way you would run any skill.Prefer applying it inline. If the user wants it permanently available as its own
/command, activate it: copy its folder into~/.claude/skills/, or upload the matching.pluginfrom~/.omega/skills-library/youraipowerup/plugins-installable/via Claude > Customize > Plugins. Tell the user which you did.If nothing in the library fits after searching, say so and fall back to a native skill or a direct answer. Do not force a poor match.
Notes
- The full browsable catalog:
omega-skills --html(served tailnet page, two tabs). - Assets per power-up (prompt CSVs, tutorials, docx templates) live under
~/.omega/skills-library/youraipowerup/assets/<slug>/. - This library is paid third-party IP: read/apply freely on this machine; never publish its contents to a public repo (see rule R-SKILL-ATLAS).