finance-oracle

finance-oracle is a skill for Claude Code, Codex from vignesh2027/Claude-Agentic-Skills2.0-version. It costs 102 tokens per session (3,133 once invoked), scanned A, original, MIT.

An institutional finance analysis guide covering options, bonds, macroeconomic markets, portfolios, hedge funds, taxes, and structured products.

In plain words
What is it for?
Use it for options pricing, portfolio construction, bond duration and convexity, macro views, hedge-fund strategies, wealth planning, tax planning, and derivatives design.
Why use it?
It brings common finance models and strategy frameworks into one place for analyzing investments and risks.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it for options pricing, portfolio construction, bond duration and convexity, macro views, hedge-fund strategies, wealth planning, tax planning, and derivatives design.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vignesh2027/claude-agentic-skills2.0-version/finance-oracle
Install

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.

Any agent
npx skills add vignesh2027/Claude-Agentic-Skills2.0-version --skill finance-oracle
Clone the repo
git clone --depth 1 https://github.com/vignesh2027/Claude-Agentic-Skills2.0-version

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for finance-oracle

README.md
[![agentmods](https://agentmods.dev/badge/skills/vignesh2027/claude-agentic-skills2.0-version/finance-oracle/github.svg)](https://agentmods.dev/skills/vignesh2027/claude-agentic-skills2.0-version/finance-oracle)
Your own site
<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.

agentmods 80×15 button for finance-oracle

Your own site · 80×15
<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>
Per session 102 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,133 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 11d ago against content hash 1687f600d240, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

finance-oracle/SKILL.md · 308 lines

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

Read the full file on GitHub · 308 lines

Changes

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.

  1. 11d ago First seen · 308 lines · 102 tokens per session scan A 1687f600d240

Subscribe to this mod's changes

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.