Awesome-openclaw-skills yahoo-data-fetcher
Fetch real-time stock quotes from Yahoo Finance.
install
source · Clone the upstream repo
git clone https://github.com/sundial-org/awesome-openclaw-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/yahoo-data-fetcher" ~/.claude/skills/sundial-org-awesome-openclaw-skills-yahoo-data-fetcher && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/sundial-org/awesome-openclaw-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/yahoo-data-fetcher" ~/.openclaw/skills/sundial-org-awesome-openclaw-skills-yahoo-data-fetcher && rm -rf "$T"
manifest:
skills/yahoo-data-fetcher/SKILL.mdsource content
Yahoo Data Fetcher – Stock Quote
Get current stock price data from Yahoo Finance.
This skill fetches the latest market quote for one or more stock symbols and returns normalized JSON output.
Command
/stock quote
/stock quoteFetch the latest quote for one or more stock symbols.
Input
(string or array of strings)symbols
Examples:
"AAPL""AAPL MSFT TSLA""AAPL,MSFT,TSLA"["AAPL", "MSFT"]{ "symbols": ["AAPL", "MSFT"] }
Output
For each symbol:
– stock tickersymbol
– latest market priceprice
– absolute price changechange
– percentage changechangePercent
– trading currencycurrency
– market status (e.g.marketState
,REGULAR
)CLOSED
Example output:
[ { "symbol": "AAPL", "price": 189.12, "change": 1.23, "changePercent": 0.65, "currency": "USD", "marketState": "REGULAR" } ]