Skills › Finance › Stock Watchlist Brief
Stock Watchlist Brief
Get a snapshot of your stock watchlist — current prices, recent news, and a one-line summary for each ticker.
Superpowers: handler_finance · handler_generate
When to use: You want a quick morning overview of your portfolio or watchlist without opening a trading terminal.
Steps
Get current quotes for your watchlist
Superpower: handler_finance — live API reference →
POST /v2/superpowers/handler_finance
{
"task": "quote",
"symbol": "NVDA"
}
Repeat this step for each ticker in your watchlist (AAPL, MSFT, TSLA, etc.).
Get recent news for the tickers
Superpower: handler_finance — live API reference →
POST /v2/superpowers/handler_finance
{
"task": "news",
"query": "NVDA AAPL MSFT earnings analyst guidance"
}
Summarise into a watchlist brief
Superpower: handler_generate — live API reference →
POST /v2/superpowers/handler_generate
{
"task": "chat",
"prompt": "Format a morning watchlist brief. For each stock: current price, daily change %, key news item. End with a 1-sentence market mood summary. Data: [steps 1-2 results]"
}
From previous step: quote data (step 1) + news (step 2) → inject into prompt
Outcome: Morning watchlist brief: current prices, daily change, key news per ticker, market mood summary.
Fetch this skill via API
GET /v2/skills/stock-watchlist-brief
Authorization: Bearer sk-hndlr-...