Type nvda _ in whatever you're writing and the _ becomes a live quote like NVDA: $198.47. The stocks blank fetches from Finnhub the moment the keyword and _ land; crypto works the same way with no key at all. The price arrives in your sentence, not in a separate window.
What you can type
| Blank | Triggers | Needs |
|---|---|---|
| Stocks | Tickers (nvda _, aapl _, tsla _), company names (nvidia _, tesla _), or explicit forms (nvidia stock _). Nvidia, Apple, Google, Microsoft, Amazon, Tesla, Meta, Reddit are covered out of the box. | A free FINNHUB_API_KEY (opencues set-key finnhub <key>) |
| Crypto | bitcoin _ / btc _, eth _, sol _, doge _ and two dozen more symbols | Nothing: CoinGecko's public API, no key, no signup |
Unknown keywords are treated as ticker symbols directly (sanitised first), so coverage extends beyond the shipped dictionary without code changes. Quotes cache for a minute per ticker, crypto for a minute per coin.
Designed not to misfire
The keyword must lead the sentence your _ ends, so writing prose that merely mentions Tesla never triggers a quote; only tsla _ as its own request does. The output embeds the ticker (NVDA: $198.47) so it stays meaningful after the command span clears, and quotes are read-only by design: a share price isn't a value you step through with the arrow keys, unlike volume _. Errors are visible in place (NVDA: HTTP 429), never a silent gap, and without a Finnhub key the blank simply doesn't register.
Where this fits real writing
The point isn't a trading dashboard; it's the sentence you're already writing: a market note in a message, a price in a report, a quick sanity check mid-email, or a terminal scratchpad via oc-shell. With the optional blank-context mode on, popular tickers are also exposed as ambient tokens, so phrasings like how are my stocks doing _ can route through the catalog rather than requiring each ticker typed.
Beyond prices
The same pattern covers the rest of the shipped live-data set: weather london _, hn _ for the top Hacker News story, is claude down _ for API status, population of France _ offline. One keyword, one _, one in-place answer.
Related: The stocks blank · The crypto blank · Control your system from text · The Hacker News blank · GitHub repo