$npx -y skills add geekjourneyx/mind-skills --skill trending-skillsFetches skills.sh trending rankings. Use when asking about skill rankings or popular tools.
| 1 | # Trending Skills |
| 2 | |
| 3 | Fetch skills.sh trending rankings and skill details. |
| 4 | |
| 5 | ## Quick Start |
| 6 | |
| 7 | ``` |
| 8 | # View rankings |
| 9 | 今天技能排行榜 |
| 10 | Top 10 skills |
| 11 | 技能榜单 |
| 12 | ``` |
| 13 | |
| 14 | ## Query Types |
| 15 | |
| 16 | | Type | Examples | Description | |
| 17 | |------|----------|-------------| |
| 18 | | Rankings | `今天技能排行榜` `Top 10` | Current rankings | |
| 19 | | Detail | `xxx是什么` `xxx介绍` | Skill details (requires extra packages) | |
| 20 | |
| 21 | ## Workflow |
| 22 | |
| 23 | ``` |
| 24 | - [ ] Step 1: Parse query type |
| 25 | - [ ] Step 2: Fetch data from skills.sh |
| 26 | - [ ] Step 3: Format and display results |
| 27 | ``` |
| 28 | |
| 29 | --- |
| 30 | |
| 31 | ## Step 1: Parse Query Type |
| 32 | |
| 33 | | User Input | Query Type | Action | |
| 34 | |------------|------------|--------| |
| 35 | | `今天技能排行榜` | rankings | Show top N skills | |
| 36 | | `Top 10 skills` | rankings | Show top N skills | |
| 37 | | `xxx是什么` | detail | Show skill details | |
| 38 | |
| 39 | --- |
| 40 | |
| 41 | ## Step 2: Fetch Data |
| 42 | |
| 43 | ### Fetch Rankings |
| 44 | |
| 45 | ```bash |
| 46 | cd skills/trending-skills |
| 47 | python src/skills_fetcher.py |
| 48 | ``` |
| 49 | |
| 50 | **Requirements**: |
| 51 | |
| 52 | For basic rankings: |
| 53 | ```bash |
| 54 | pip install playwright |
| 55 | playwright install chromium --with-deps |
| 56 | ``` |
| 57 | |
| 58 | For skill details (optional): |
| 59 | ```bash |
| 60 | pip install beautifulsoup4 lxml requests |
| 61 | ``` |
| 62 | |
| 63 | **Note**: `--with-deps` automatically installs required system libraries. |
| 64 | |
| 65 | ### Fetch Skill Details (Optional) |
| 66 | |
| 67 | ```bash |
| 68 | python src/detail_fetcher.py <skill-name> |
| 69 | ``` |
| 70 | |
| 71 | --- |
| 72 | |
| 73 | ## Step 3: Format Results |
| 74 | |
| 75 | ### Rankings Output |
| 76 | |
| 77 | ```markdown |
| 78 | # Skills Trending |
| 79 | |
| 80 | | # | Skill | Owner | Installs | |
| 81 | |---|-------|-------|----------| |
| 82 | | 1 | remotion-best-practices | remotion-dev | 5.6K | |
| 83 | | 2 | react-best-practices | vercel-labs | 5.4K | |
| 84 | | 3 | web-design-guidelines | vercel-labs | 4.0K | |
| 85 | ``` |
| 86 | |
| 87 | ### Detail Output (Optional) |
| 88 | |
| 89 | ```markdown |
| 90 | # remotion-best-practices |
| 91 | |
| 92 | **Owner**: remotion-dev/skills |
| 93 | **Installs**: 5.6K |
| 94 | |
| 95 | **When to use**: |
| 96 | [Usage description from skills.sh] |
| 97 | |
| 98 | **Rules** (27 total): |
| 99 | - 3d.md: 3D content in Remotion... |
| 100 | - audio.md: Audio processing... |
| 101 | |
| 102 | **URL**: https://skills.sh/remotion-dev/remotion-best-practices |
| 103 | ``` |
| 104 | |
| 105 | --- |
| 106 | |
| 107 | ## Configuration |
| 108 | |
| 109 | No configuration required. |
| 110 | |
| 111 | --- |
| 112 | |
| 113 | ## Troubleshooting |
| 114 | |
| 115 | | Issue | Solution | |
| 116 | |-------|----------| |
| 117 | | Playwright error | Run `playwright install chromium` | |
| 118 | | Network timeout | Check internet connection | |
| 119 | | Skill not found | Verify skill name on skills.sh | |
| 120 | |
| 121 | --- |
| 122 | |
| 123 | ## CLI Reference |
| 124 | |
| 125 | ```bash |
| 126 | # Fetch rankings |
| 127 | python skills/trending-skills/src/skills_fetcher.py |
| 128 | |
| 129 | # Fetch skill detail (optional) |
| 130 | python skills/trending-skills/src/detail_fetcher.py <skill-name> |
| 131 | ``` |