From sundial-org-awesome-openclaw-skills-4
Fetches real-time stock quotes from Yahoo Finance for one or more symbols via /stock quote. Returns normalized JSON with price, change, percent change, currency, and market state.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4This skill uses the workspace's default tool permissions.
Get current stock price data from Yahoo Finance.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
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.
/stock quoteFetch the latest quote for one or more stock symbols.
symbols (string or array of strings)Examples:
"AAPL""AAPL MSFT TSLA""AAPL,MSFT,TSLA"["AAPL", "MSFT"]{ "symbols": ["AAPL", "MSFT"] }For each symbol:
symbol – stock tickerprice – latest market pricechange – absolute price changechangePercent – percentage changecurrency – trading currencymarketState – market status (e.g. REGULAR, CLOSED)Example output:
[
{
"symbol": "AAPL",
"price": 189.12,
"change": 1.23,
"changePercent": 0.65,
"currency": "USD",
"marketState": "REGULAR"
}
]