Install
$ agentstack add skill-littlepeter52012-skill-router-skill-router ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
SKRT — Skill Router 智能技能搜索路由器
This meta-skill enables automatic skill discovery from your entire skill library (300+ skills) in **"
**Examples:**
```bash
skrt query "NotebookLM search"
skrt query "用NotebookLM查找资料"
skrt query "PDF merge files"
skrt query "write scientific paper"
skrt query "brainstorm ideas"
skrt query "molecular docking" --top 10
Step 2: Parse Results
The command outputs JSON with matched skills sorted by relevance:
{
"query": "...",
"elapsed_ms": 3.2,
"provider": "local",
"results": [
{
"rank": 1,
"name": "skill-name",
"score": 95,
"path": "/absolute/path/to/SKILL.md",
"summary": "Brief description..."
}
]
}
Step 3: Load the Best Match
- Take the top result's
pathfield - Read that SKILL.md file using
view_file - Follow the instructions in that SKILL.md to complete the user's task
Step 4: If No Results
If results is empty or scores are very low (< 30):
- The skill library doesn't have a matching skill
- Proceed with your general knowledge
- Suggest the user install a relevant skill
Configuration
# Pin high-priority skills (always boosted in results)
skrt pin add brainstorming
skrt pin add prompt-master
# Check status
skrt status
# Force index rebuild after installing new skills
skrt index --force
Notes
- The
skrtbinary is installed at~/go/bin/skrt - Config:
~/.skrt/config.json - Index cache:
~/.skrt/index.json - Supports Chinese (CJK), English, and mixed queries
- Typical latency: < 80ms end-to-end
- Codebase:
~/path/to/skill-router/(GitHub:skrt-dev/skill-router)
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: LittlePeter52012
- Source: LittlePeter52012/skill-router
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.