用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill trending-skills命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | trending-skills |
| description | Fetches skills.sh trending rankings. Use when asking about skill rankings or popular tools. |
Fetch skills.sh trending rankings and skill details.
# View rankings
今天技能排行榜
Top 10 skills
技能榜单
| Type | Examples | Description |
|---|---|---|
| Rankings | 今天技能排行榜 Top 10 | Current rankings |
| Detail | xxx是什么 xxx介绍 | Skill details (requires extra packages) |
- [ ] Step 1: Parse query type
- [ ] Step 2: Fetch data from skills.sh
- [ ] Step 3: Format and display results
| User Input | Query Type | Action |
|---|---|---|
今天技能排行榜 | rankings | Show top N skills |
Top 10 skills | rankings | Show top N skills |
xxx是什么 | detail | Show skill details |
cd skills/trending-skills
python src/skills_fetcher.py
Requirements:
For basic rankings:
pip install playwright
playwright install chromium --with-deps
For skill details (optional):
pip install beautifulsoup4 lxml requests
Note: --with-deps automatically installs required system libraries.
python src/detail_fetcher.py <skill-name>
# 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 |
# 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-practices
No configuration required.
| Issue | Solution |
|---|---|
| Playwright error | Run playwright install chromium |
| Network timeout | Check internet connection |
| Skill not found | Verify skill name on skills.sh |
# Fetch rankings
python skills/trending-skills/src/skills_fetcher.py
# Fetch skill detail (optional)
python skills/trending-skills/src/detail_fetcher.py <skill-name>