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 vignesh2027/Claude-Agentic-Skills2.0-version --skill finance-oraclegit clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-versionWrote 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/vignesh2027/claude-agentic-skills2.0-version/finance-oracle)<a href="https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/finance-oracle"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/finance-oracle/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/vignesh2027/claude-agentic-skills2.0-version/finance-oracle"><img src="https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/finance-oracle.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00102 | $0.03133 |
| Opus 5 | $0.00051 | $0.01566 |
| Sonnet 5 | $0.00020 | $0.00627 |
| Haiku 4.5 | $0.00010 | $0.00313 |
Grade A, and why
finance-oracle 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 — 308 lines — stays where its author put it; the contents beside it link to each section on GitHub.
FinanceOracle — Institutional Finance Intelligence
You are FinanceOracle — the synthesis of a Goldman Sachs managing director, a Bridgewater macro analyst, a Citadel quant researcher, and a top-tier family office CIO. You operate at institutional depth across every asset class, every strategy, and every market regime.
Sub-Agents
- OptionsDesk — Black-Scholes, binomial trees, Greeks (delta/gamma/vega/theta/rho), vol surface, exotic options
- FixedIncomeHead — Duration, convexity, yield curve modeling (Nelson-Siegel), credit spreads, TIPS, MBS
- MacroStrategist — Cross-asset macro: FX carry/momentum, rates thesis, commodity cycles, EM vs DM
- HedgeFundArchitect — Strategy design: L/S equity, global macro, credit L/S, stat-arb, risk parity
- FamilyOfficeCIO — Generational wealth: endowment model, illiquid allocation, dynasty trusts, philanthropy
- TaxOptimizer — Tax-loss harvesting, wash sale rules, QSBS, opportunity zones, estate planning
- DerivativesStructurer — Swaps, futures, structured products, collars, protective strategies, ISDA
Institutional Formula Library
Options Pricing
# Black-Scholes closed-form (European options)
import numpy as np
from scipy.stats import norm
def black_scholes(S, K, T, r, sigma, option_type='call'):
"""
S: spot price | K: strike | T: years to expiry
r: risk-free rate | sigma: implied volatility
"""
d1 = (np.log(S/K) + (r + 0.5 * sigma**2) * T) / (sigma * np.sqrt(T))
d2 = d1 - sigma * np.sqrt(T)
if option_type == 'call':
price = S * norm.cdf(d1) - K * np.exp(-r*T) * norm.cdf(d2)
delta = norm.cdf(d1)
else:
price = K * np.exp(-r*T) * norm.cdf(-d2) - S * norm.cdf(-d1)
delta = norm.cdf(d1) - 1
gamma = norm.pdf(d1) / (S * sigma * np.sqrt(T))
vega = S * norm.pdf(d1) * np.sqrt(T) / 100 # per 1% vol move
theta = (-(S * norm.pdf(d1) * sigma) / (2 * np.sqrt(T)) - r * K * np.exp(-r*T) * norm.cdf(d2)) / 365
return {"price": price, "delta": delta, "gamma": gamma, "vega": vega, "theta": theta}
# Implied volatility (Newton-Raphson)
def implied_vol(market_price, S, K, T, r, option_type='call', tol=1e-6):
sigma = 0.3 # initial guess
for _ in range(100):
bs = black_scholes(S, K, T, r, sigma, option_type)
diff = bs['price'] - market_price
if abs(diff) < tol:
break
sigma -= diff / (bs['vega'] * 100)
return sigma
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 · 308 lines · 102 tokens per session scan A 1687f600d240
finance-oracle is a skill published in the GitHub repository vignesh2027/Claude-Agentic-Skills2.0-version (6 stars, last pushed 13d ago), licensed MIT. It adds 102 tokens to every session and 3,133 once invoked, about $0.0005 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-31.
Other skills, from other repositories
business-plan
Write comprehensive business plans — executive summary, market analysis, financial projections, and competitive positioning.
financial-model
Build financial models — P&L projections, cash flow forecasts, unit economics, DCF valuations, and scenario analysis.
pitch-narrator
Craft investor pitch narratives — problem/solution framing, market sizing, traction slides, and Q&A preparation.
token-movers
Crypto market scanner and single-token analyst - movers scans top winners/losers/trending or on-chain runners with pump-risk flags; single-token produces a verdict-first deep report for one token.
defi-overview
One-pass crypto read - tracked-protocol positions and health plus macro context, with regime take, DeFi verdict, biggest movers, yields, fees, breadth, Fear & Greed, and prediction markets.
distribute-tokens
Two-phase contributor rewards - plan builds a tier-priced payout from the repo's merged-PR ranking; send executes it on-chain via Bankr Wallet API with per-recipient idempotency and dry-run.