Fetches skills.sh trending rankings. Use when asking about skill rankings or popular tools.
Resources
1Install
npx skillscat add geekjourneyx/mind-skills/trending-skills Install via the SkillsCat registry.
This skill fetches trending skill rankings and individual skill details from skills.sh, displaying them in formatted tables or markdown. It solves the problem of manually browsing the site to find popular AI skills by automating data retrieval through Python scripts. It should be used when an agent or developer needs to query current skill rankings or look up information about specific skills available on the platform.
Trending Skills
Fetch skills.sh trending rankings and skill details.
Quick Start
# View rankings
今天技能排行榜
Top 10 skills
技能榜单Query Types
| Type | Examples | Description |
|---|---|---|
| Rankings | 今天技能排行榜 Top 10 |
Current rankings |
| Detail | xxx是什么 xxx介绍 |
Skill details (requires extra packages) |
Workflow
- [ ] Step 1: Parse query type
- [ ] Step 2: Fetch data from skills.sh
- [ ] Step 3: Format and display resultsStep 1: Parse Query Type
| User Input | Query Type | Action |
|---|---|---|
今天技能排行榜 |
rankings | Show top N skills |
Top 10 skills |
rankings | Show top N skills |
xxx是什么 |
detail | Show skill details |
Step 2: Fetch Data
Fetch Rankings
cd skills/trending-skills
python src/skills_fetcher.pyRequirements:
For basic rankings:
pip install playwright
playwright install chromium --with-depsFor skill details (optional):
pip install beautifulsoup4 lxml requestsNote: --with-deps automatically installs required system libraries.
Fetch Skill Details (Optional)
python src/detail_fetcher.py <skill-name>Step 3: Format Results
Rankings Output
# Skills Trending
| # | Skill | Owner | Installs |
|---|-------|-------|----------|
| 1 | remotion-best-practices | remotion-dev | 5.6K |
| 2 | react-best-practices | vercel-labs | 5.4K |
| 3 | web-design-guidelines | vercel-labs | 4.0K |Detail Output (Optional)
# remotion-best-practices
**Owner**: remotion-dev/skills
**Installs**: 5.6K
**When to use**:
[Usage description from skills.sh]
**Rules** (27 total):
- 3d.md: 3D content in Remotion...
- audio.md: Audio processing...
**URL**: https://skills.sh/remotion-dev/remotion-best-practicesConfiguration
No configuration required.
Troubleshooting
| Issue | Solution |
|---|---|
| Playwright error | Run playwright install chromium |
| Network timeout | Check internet connection |
| Skill not found | Verify skill name on skills.sh |
CLI Reference
# Fetch rankings
python skills/trending-skills/src/skills_fetcher.py
# Fetch skill detail (optional)
python skills/trending-skills/src/detail_fetcher.py <skill-name>