Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add gadicc/yahoo-finance2 --skill yahoo-finance2git clone --depth 1 https://github.com/gadicc/yahoo-finance2Wrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/gadicc/yahoo-finance2/yahoo-finance2)<a href="https://agentmods.dev/skills/gadicc/yahoo-finance2/yahoo-finance2"><img src="https://agentmods.dev/badge/skills/gadicc/yahoo-finance2/yahoo-finance2/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/gadicc/yahoo-finance2/yahoo-finance2"><img src="https://agentmods.dev/badge/skills/gadicc/yahoo-finance2/yahoo-finance2.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 6 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 97 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 98 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 99 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 108 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium Agent Snooping · line 207 Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
- medium MCP Rug Pull · line 211 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00061 | $0.01704 |
| Opus 5 | $0.00030 | $0.00852 |
| Sonnet 5 | $0.00012 | $0.00341 |
| Haiku 4.5 | $0.00006 | $0.00170 |
Grade A, and why
yahoo-finance2 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.
yahoo-finance2
What this skill is for
Use this skill when a task involves yahoo-finance2, including:
- Adding Yahoo Finance market data to a server-side JavaScript/TypeScript app.
- Choosing between
quote,chart,historical,quoteSummary,fundamentalsTimeSeries,screener,options, or other modules. - Using the package CLI or bundled MCP server.
- Modifying this repository's Deno source, tests, generated schemas, docs, or npm output build.
This is an unofficial Yahoo Finance client. Do not describe it as a supported Yahoo API, and do not assume Yahoo data availability, freshness, or shape is guaranteed.
Using the package
Prefer the v3 class API:
import YahooFinance from "yahoo-finance2";
const yahooFinance = new YahooFinance();
const quote = await yahooFinance.quote("AAPL");
console.log(quote?.regularMarketPrice, quote?.currency);
Do not use old v1/v2 singleton patterns such as
yahooFinance.setGlobalConfig(). In v3, instantiate with
new YahooFinance(options).
This package is for server-side runtimes. Do not put direct Yahoo Finance calls in browser/client bundles; Yahoo's CORS and cookie behavior require a server, serverless, edge, Deno, Bun, or Node context.
Module selection
- Use
search(query)first when a symbol is uncertain. - Use
quote(symbolOrSymbols)for current or near real-time quote fields. It accepts one symbol or an array. Usefieldsto limit payloads; for keyed access, request object or map returns. - Use
quoteCombine(symbol)when many independent code paths need quote data; it debounces many single-symbol calls into fewerquote()requests. - Use
chart(symbol, { period1, period2, interval })for chart-ready historical data with events such as dividends and splits.return: "array"is easier to iterate;return: "object"mirrors Yahoo's native shape. - Use
historical()for a simpler OHLCV history interface. - Use
quoteSummary(symbol, { modules })for profile, price, summary detail, filings, ownership, recommendations, and other quote-summary modules. Request only the modules needed. - Use
fundamentalsTimeSeries()for financial statements. Since late 2024, quote-summary financial-statement modules such asincomeStatementHistory,balanceSheetHistory, andcashflowStatementHistoryprovide little data. - Use
options(symbol)for options chains. - Use
screener()instead of removed/deprecated daily gainers or losers modules. Common predefined screeners includeday_gainers,day_losers, andmost_actives. - Use
trendingSymbols(region),recommendationsBySymbol(), andinsights()for their specialized Yahoo Finance endpoints.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 11d ago First seen · 213 lines · 61 tokens per session scan A 9770b7ec49f6
yahoo-finance2 is a skill published in the GitHub repository gadicc/yahoo-finance2 (795 stars, last pushed 1mo ago), licensed MIT. It adds 61 tokens to every session and 1,704 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
xrocket-exchange
Use the unofficial xRocket Exchange MCP to inspect spot markets and accounts, trade autonomously inside an operator-configured daily value limit, or prepare explicitly approved transfers and withdrawals. Trigger when a request concerns xRocket markets, account data, deposits, trading, transfers, withdrawals, or its…
surf
Surf (asksurf.ai) is RETIRED on BlockRun and the blockrunsurf tool was REMOVED in 0.49.0 — the gateway has answered every /v1/surf/ path with HTTP 410 endpointretired since 2026-09-06. Use this skill to route a former Surf question (on-chain SQL, wallet labels and net worth, CEX order books, social mindshare, news) to…
scanner-pmcc
Scan stocks for Poor Man's Covered Call (PMCC) suitability. Analyzes LEAPS and short call options for delta, liquidity, spread, IV, yield, trend direction, and earnings proximity. Use when user asks about PMCC candidates, diagonal spreads, or LEAPS strategies.
ib-trades-history
Fetch trade executions from Interactive Brokers filtered by account, date range, or symbol. Supports live API (7 days history) and FlexReport (full history). Use when user asks about their trades, executions, or transaction history. Requires TWS or IB Gateway running locally.
ib-collar
Generate tactical collar strategy reports for protecting PMCC positions through earnings or high-risk events. Requires TWS or IB Gateway running locally.
ib-portfolio-action-report
Generate a comprehensive portfolio action report with earnings dates and risk assessment. Use when user asks for portfolio review, action items, earnings risk, or position management across IB accounts. Requires TWS or IB Gateway running locally.