Personal collection of Claude Code skills for various tasks.
Skills are modular components that extend Claude Code's capabilities. Each skill handles a specific domain or task, providing specialized knowledge and tools.
Fetches and summarizes hot topics from Zhejiang University CC98 forum.
- Trigger phrases: "今天的十大话题是什么?", "本周热门", "CC98热门"
- Features:
- Fetch weekly hot topics from CC98
- Calculate reading rating (1-5 stars)
- Extract topic content and highlights
- Support environment variables for credentials
Usage:
export CC98_USERNAME="your_username"
export CC98_PASSWORD="your_password"
python scripts/cc98_scraper.pyTo add a new skill:
- Create a new folder under
skills/with your skill name - Include a
SKILL.mdfile with:- Skill name and description
- Trigger phrases
- Usage examples
- Implement the core logic in a Python script
- Submit a PR or push directly
skills/
├── README.md # This file
├── cc98_hot_topics/ # CC98 forum hot topics skill
│ ├── SKILL.md
│ ├── scripts/
│ ├── examples/
│ └── references/
└── [your_next_skill]/ # Add more skills here
MIT