install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/RKiding/Awesome-finance-skills/alphaear-stock" ~/.claude/skills/comeonoliver-skillshub-alphaear-stock && rm -rf "$T"
manifest:
skills/RKiding/Awesome-finance-skills/alphaear-stock/SKILL.mdsource content
AlphaEar Stock Skill
Overview
Search A-Share/HK/US stock tickers and retrieve historical price data (OHLCV).
Capabilities
1. Stock Search & Data
Use
scripts/stock_tools.py via StockTools.
- Search:
search_ticker(query)- Fuzzy search by code or name (e.g., "Moutai", "600519").
- Returns: List of
.{code, name}
- Get Price:
get_stock_price(ticker, start_date, end_date)- Returns DataFrame with OHLCV data.
- Dates format: "YYYY-MM-DD".
Dependencies
,pandas
,requests
,akshareyfinance
(stock tables)scripts/database_manager.py