staskh/stock-quote
Get real-time stock quote with price, volume, change, market cap, and 52-week range for any ticker symbol. Use when user asks about current stock price, quote, or basic stock info.
npx skills add https://github.com/staskh/trading_skills --skill stock-quote
Fetch current stock data from Yahoo Finance.
> Note: If uv is not installed or pyproject.toml is not found, replace uv run python with python in all commands below.
Run the quote script with the ticker symbol:
uv run python scripts/quote.py SYMBOL
Replace SYMBOL with the requested ticker (e.g., AAPL, MSFT, TSLA, SPY).
The script outputs JSON with:
Present the data in a readable format. Highlight significant moves (>2% change).
yfinanceAll timestamps and time-based calculations must use the America/New_York timezone. All JSON output must include generated_at (NY time string) and data_delay fields.
Take staskh/stock-quote from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.