Files
oc/clis/finance.yahoo.com.json
only-cli 9873b7f492 add the Yahoo Finance cli and measure each agent's default browsing against oc
Yahoo Finance quote, news, history, lookup, markets, gainers, losers, and
trending pages all arrive server rendered (the AAPL quote page carries the
closing price in about 456 tokens of view against 325,000 of raw HTML), so
a definition ships for all eight. The README grows the comparison people
actually ask for: the same stock price task run through Claude Code and
Codex as they ship versus with oc, one live session each, wrong answer and
all. Codex read raw HTML and reported a price that is not on the page;
WebFetch's digest was cheaper than oc this run and the README says so
plainly rather than hiding it. Also a banner, badges, and an llms.txt
pointer, so both people and models skimming the repo can tell what it is.
2026-08-19 07:59:38 -04:00

14 lines
732 B
JSON

{
"domain": "finance.yahoo.com",
"commands": {
"quote": { "open": "https://finance.yahoo.com/quote/{symbol}", "args": ["symbol"] },
"news": { "open": "https://finance.yahoo.com/quote/{symbol}/news", "args": ["symbol"] },
"history": { "open": "https://finance.yahoo.com/quote/{symbol}/history", "args": ["symbol"] },
"lookup": { "open": "https://finance.yahoo.com/lookup?s={query}", "args": ["query"] },
"markets": { "open": "https://finance.yahoo.com/markets" },
"gainers": { "open": "https://finance.yahoo.com/markets/stocks/gainers/" },
"losers": { "open": "https://finance.yahoo.com/markets/stocks/losers/" },
"trending": { "open": "https://finance.yahoo.com/markets/stocks/trending/" }
}
}