Skip to content

geekjourneyx/mind-skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mind Skills

A collection of Claude Code skills for fetching curated content from high-quality sources.

Installation

# 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

Skills Overview

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

ai-daily

Fetch AI industry news from smol.ai RSS feed.

Usage

昨天AI资讯
2026-01-13的新闻

Requirements

pip install feedparser requests

fs-street

Fetches articles from Farnam Street blog, covering mental models, decision-making, and learning.

Usage

昨天的文章
今天的FS文章
2024-06-13的文章

Requirements

pip install feedparser requests

trending-skills

Fetches skills.sh trending rankings via Playwright.

Usage

今天技能排行榜
Top 10 skills
技能榜单

Requirements

# Basic rankings
pip install playwright
playwright install chromium --with-deps

# For skill details (optional)
pip install beautifulsoup4 lxml requests

github-topics

Fetches GitHub topic trending repositories via GitHub API.

Usage

今天 claude-code 话题排行榜
Top 10 GitHub 项目
热门仓库
anthropics/claude-code 介绍

Requirements

pip install requests

Optional Configuration

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.


Project Structure

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

Architecture

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    │
└─────────────────────────────────────────────────┘

打赏 Buy Me A Coffee

如果该项目帮助了您,请作者喝杯咖啡吧

WeChat

微信打赏码


作者

关注公众号,获取更多 AI 编程、AI 工具与 AI 出海建站的实战分享:

公众号:极客杰尼


License

MIT


Contributing

  1. Fork the repository
  2. Create your feature branch
  3. Follow the existing skill structure
  4. Submit a pull request

Links

About

Claude Code skills for fetching curated content from high-quality sources. AI news, mental models, GitHub trending, and more.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages