A collection of custom Claude Code skills that extend Claude's capabilities for everyday tasks.
Skills are reusable prompt-and-script bundles that teach Claude Code new abilities. Each skill lives in its own folder with a SKILL.md (the instruction set) and supporting scripts/references. Once installed, skills activate automatically when Claude detects a matching user intent — no slash command needed.
| Skill | Description | Trigger Examples |
|---|---|---|
| stock-diglett | Fetch real market data and generate structured stock analysis reports with price charts, fundamentals, event timelines, and buy/sell insights. | analyze AAPL, TSLA fundamentals, should I buy GOOGL?, NFLX最近走势 |
# 1. Clone this repo
git clone https://github.com/Abson/skills.git
# 2. Copy the skill(s) you want into your Claude Code skills directory
cp -r skills/stock-diglett ~/.claude/skills/stock-diglett
# 3. Install any skill-specific dependencies (see each skill's README)~/.claude/skills/
└── stock-diglett/
├── SKILL.md # Skill definition (auto-loaded by Claude Code)
├── scripts/ # Python scripts for data fetching & rendering
└── references/ # Benchmark guides and reference materials
# Pull the latest changes
cd /path/to/skills
git pull
# Re-copy to your Claude Code skills directory
cp -r stock-diglett ~/.claude/skills/stock-diglettWant to add a new skill? Each skill folder should contain:
SKILL.md— YAML frontmatter (name,description) + detailed instructions for ClaudeREADME.md— Human-readable docs: what it does, how to install, example outputscripts/— Any helper scripts the skill relies onreferences/— Optional reference materials (benchmarks, guides, templates)
MIT