skills-radar
A multi-source knowledge base of Agent Skills. Use it to answer "what capabilities already exist for this goal, which is best, and how do I install it" — without manual web research.
When to use
- The user starts a new task/business ("I want to build an AI video product") and you want the relevant existing skills up front.
- The user asks to find, compare, or install a skill for some domain.
- Before decomposing/implementing, to prefer reuse over building from scratch.
How to use
Run from the skills-radar project directory (clone: github.com/<you>/skills-radar):
# Capability lookup for a goal (Chinese or English). Prints matched domains
# + a comparison table: sources / installs / stars / score / install command.
python3 kb.py query "<the user's goal or domain keywords>"
# Keyword search across the catalog.
python3 crawl.py search "<keyword>"
# Refresh the catalog + vault (also runs daily via launchd/CI).
python3 crawl.py crawl
Present the returned candidates to the user, let them choose, then install:
npx skills add <owner/repo/skill> -g -y # skills.sh / github / awesome
npm i <package> # npm-distributed
sr install <id> # skillregistry
# or:
python3 crawl.py pull <id>
Notes
- Ranking favors skills confirmed by multiple sources (cross-source score), then popularity.
- Output is a recommendation to verify, not an automatic install; confirm before depending on it.
- Auto-install is gated behind a whitelist (
crawl.py pull --auto, off by default). - Full docs: README.md. Obsidian vault export + workflow integration:
docs/.