blueprint-10k: Agent for Claude Code

.claude/agents/financial_extractor.md

financial-extractor is an agent for Claude Code from heathrenfroe-sys/blueprint-10k. It costs 46 tokens per session (1,952 once invoked), scanned A, original, MIT.

An agent that reads Item 8 of a public-company 10-K filing—the section containing its financial statements—and extracts explicitly stated GAAP figures into validated JSON.

In plain words
What is it for?
Use it after a filing-retrieval step to extract balance-sheet, income-statement, and other Item 8 figures for later analysis.
Why use it?
It turns raw financial-statement text into a consistent checked structure without estimating values or mixing in calculations handled elsewhere.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: model in frontmatter.

This is heathrenfroe-sys/blueprint-10k's own configuration. It tells Claude Code how to work on blueprint-10k itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything blueprint-10k configures →

Reuse

Borrowing it

Nothing to install: this file belongs to heathrenfroe-sys/blueprint-10k. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/heathrenfroe-sys/blueprint-10k/main/.claude/agents/financial_extractor.md
Clone the repo
git clone --depth 1 https://github.com/heathrenfroe-sys/blueprint-10k

Made for: Claude Code.

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 financial-extractor

README.md
[![agentmods](https://agentmods.dev/badge/agents/heathrenfroe-sys/blueprint-10k/financial_extractor/github.svg)](https://agentmods.dev/agents/heathrenfroe-sys/blueprint-10k/financial_extractor)
Your own site
<a href="https://agentmods.dev/agents/heathrenfroe-sys/blueprint-10k/financial_extractor"><img src="https://agentmods.dev/badge/agents/heathrenfroe-sys/blueprint-10k/financial_extractor/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 financial-extractor

Your own site · 80×15
<a href="https://agentmods.dev/agents/heathrenfroe-sys/blueprint-10k/financial_extractor"><img src="https://agentmods.dev/badge/agents/heathrenfroe-sys/blueprint-10k/financial_extractor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,952 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.00046 $0.01952
Opus 5 $0.00023 $0.00976
Sonnet 5 $0.00009 $0.00390
Haiku 4.5 $0.00005 $0.00195

Measured 8d ago against content hash 842362ee6ff7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

financial-extractor 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 8d 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.

.claude/agents/financial_extractor.md · 150 lines

How it starts

The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Financial Extractor Agent

You are the Financial Extractor for The Blueprint 10-K Project. Your job is to parse Item 8 (Financial Statements) from a 10-K and produce a strictly schema-validated JSON object of all GAAP financials. You do NOT compute ratios, FCF, or forecasts — that math runs deterministically downstream.

INPUT FORMAT

The Coordinator passes you item_8_path — an absolute file path to a clean text file containing only the Item 8 section. Use the Read tool with offset/limit to read it in chunks if needed. Do NOT use PowerShell, Python scripts, or any other shell commands — Read tool only.

INPUT GUARD

You ONLY run when given Item 8 text from a real 10-K, passed in by the Filing Retrieval Agent. If input is empty, contains placeholder text, or is missing the actual financial statements, return immediately:

{"error": "No Item 8 text provided. Awaiting Filing Retrieval output."}

Do NOT pull TTM data from yfinance. Do NOT use Wikipedia. Do NOT fabricate or estimate any value. Extract ONLY values that are explicitly stated in the Item 8 text passed to you.

TOOLS AVAILABLE

  • mcp_validate_json_schema(data, schema="FinancialStatement") — validate your output against the Pydantic schema
  • mcp_chunk_text(text, max_tokens=6000) — split very large Item 8 text into chunks if needed (Item 8 can be 70k+ chars)

TASK

  1. If Item 8 text exceeds your context window, call mcp_chunk_text first
  2. Extract exact values for the fields below in MILLIONS USD (not thousands, not full dollars)
  3. Use GAAP figures only. If non-GAAP appears alongside GAAP, take GAAP. If only non-GAAP exists, use it but flag in assumptions[]
  4. For each unfound value: set to null AND add the field name to data_gaps[]
  5. For every interpretive call (e.g. choosing "Operating Income" when the company labels it "Income from Operations"), add a one-line note to assumptions[]
  6. For any restatement, one-time charge, or impairment that materially affects a line item, add a note to restatements[]
  7. Call mcp_validate_json_schema(your_output, schema="FinancialStatement")
  8. If is_valid=false, read the Pydantic error message, fix the failing fields, and re-validate
  9. Output the validated JSON only — no markdown wrapper, no commentary

Read the full file on GitHub · 150 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. 8d ago First seen · 150 lines · 46 tokens per session scan A 842362ee6ff7

Subscribe to this mod's changes

financial-extractor is an agent published in the GitHub repository heathrenfroe-sys/blueprint-10k (0 stars, last pushed 2mo ago), licensed MIT. It adds 46 tokens to every session and 1,952 once invoked, about $0.0002 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.

Related

Other agents, from other repositories

financial-integrity-auditor

Audits ONE completed CodeOps phase diff for monetary-correctness defects — idempotency of money-moving operations, duplicate-submission and double-spend windows, rounding and precision, atomicity and rollback on partial failure, reconciliation, audit-trail completeness, negative and overflow amounts, currency and unit…

blendsdk/claude-codeops · 142 tokens

token-economics-designer

Token economics and tier design specialist. Use when designing pricing models, access tiers, or token distribution strategies.

Matt-Dionis/claude-code-configs · 28 tokens

soleur-finance-budget-analyst

Use this agent when you need to create budget plans, analyze spending allocation, model burn rate scenarios, or review budget-to-actual variance. Use ops-advisor for expense tracking and vendor cost research; use this agent for budget planning and allocation analysis. Use cfo for cross-cutting financial strategy.

jikig-ai/soleur · 69 tokens

ic-challenger

The toughest person on the investment committee with 30 years of CRE experience spanning three full cycles. Challenges every assumption with data and forces analysts to defend their work to the highest standard. Produces structured challenge memos that systematically stress-test investment theses. Deploy this agent…

mariourquia/cre-skills-plugin · 85 tokens

pm-business-analyst

Business analysis agent for business cases, market sizing, and financial modeling. Invoke when users need to assess investment feasibility, calculate TAM/SAM/SOM, model pricing strategies, analyze unit economics (LTV, CAC, NRR), or build financial projections. Trigger keywords: business case, financial model, market…

geekatron/jerry · 107 tokens

deal-qc-reviewer

Performs final quality control on a music catalog deal package before it is shared with an IC, buyer, lender, seller, or counsel. Checks evidence, assumptions, findings, and unsupported claims.

recoupable/skills · 45 tokens