A collection of Claude Code skills for fetching curated content from high-quality sources.
# List available skills
npx skills add geekjourneyx/mind-skills --list
# Install all skills
npx skills add geekjourneyx/mind-skills --all
# Install specific skill
npx skills add geekjourneyx/mind-skills --skill ai-daily
npx skills add geekjourneyx/mind-skills --skill fs-street
npx skills add geekjourneyx/mind-skills --skill trending-skills
npx skills add geekjourneyx/mind-skills --skill github-topics
# Install to specific agent
npx skills add geekjourneyx/mind-skills --all -a claude-code| Skill | Description | Data Source |
|---|---|---|
| ai-daily | AI industry news | RSS (smol.ai) |
| fs-street | Farnam Street blog | RSS (fs.blog) |
| trending-skills | Skills.sh ranking | Playwright |
| github-topics | GitHub topic trends | GitHub API |
Fetch AI industry news from smol.ai RSS feed.
昨天AI资讯
2026-01-13的新闻
pip install feedparser requestsFetches articles from Farnam Street blog, covering mental models, decision-making, and learning.
昨天的文章
今天的FS文章
2024-06-13的文章
pip install feedparser requestsFetches skills.sh trending rankings via Playwright.
今天技能排行榜
Top 10 skills
技能榜单
# Basic rankings
pip install playwright
playwright install chromium --with-deps
# For skill details (optional)
pip install beautifulsoup4 lxml requestsFetches GitHub topic trending repositories via GitHub API.
今天 claude-code 话题排行榜
Top 10 GitHub 项目
热门仓库
anthropics/claude-code 介绍
pip install requests| Variable | Description | Default |
|---|---|---|
GH_TOKEN |
GitHub Token (optional, for higher rate limits) | - |
TOPIC |
GitHub topic to track | claude-code |
Note: With token: 5,000 requests/hour; Without token: 60 requests/hour.
mind-skills/
├── README.md
├── CHANGELOG.md
├── CLAUDE.md
├── skills/
│ ├── ai-daily/
│ │ ├── SKILL.md
│ │ └── scripts/
│ │ └── fetch_news.py
│ ├── fs-street/
│ │ ├── SKILL.md
│ │ └── scripts/
│ │ └── fetch_blog.py
│ ├── trending-skills/
│ │ ├── SKILL.md
│ │ └── src/
│ │ ├── config.py
│ │ ├── skills_fetcher.py
│ │ └── detail_fetcher.py
│ └── github-topics/
│ ├── SKILL.md
│ └── src/
│ ├── config.py
│ ├── github_fetcher.py
│ └── readme_fetcher.py
└── requirements.txt
Design Philosophy: Stateless skills following Unix principles
┌─────────────────────────────────────────────────┐
│ AI Assistant Layer │
│ (Scheduled tasks, persistence, analysis) │
└─────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────┐
│ Stateless Skills │
│ ┌──────────┐ ┌───────────┐ ┌─────────────┐ │
│ │ ai-daily │ │ fs-street │ │ trending │ │
│ │ RSS获取 │ │ RSS获取 │ │Playwright│ │
│ └──────────┘ └───────────┘ └─────────────┘ │
└─────────────────────────────────────────────────┘
↓
┌─────────────────────────────────────────────────┐
│ External Data Sources │
│ smol.ai │ fs.blog │ skills.sh │ GitHub │
└─────────────────────────────────────────────────┘
如果该项目帮助了您,请作者喝杯咖啡吧
- 作者:
geekjourneyx - X (Twitter): https://x.com/seekjourney
- 公众号: 极客杰尼
关注公众号,获取更多 AI 编程、AI 工具与 AI 出海建站的实战分享:
MIT
- Fork the repository
- Create your feature branch
- Follow the existing skill structure
- Submit a pull request
- Skills Directory - Discover more skills
- Vercel Skills CLI - Official CLI
- Agent Skills Spec - Specification

