blueprint-10k: Agent for Claude Code

.claude/agents/risk_analyst.md

risk-analyst is an agent for Claude Code from heathrenfroe-sys/blueprint-10k. It costs 63 tokens per session (1,445 once invoked), scanned A, original, MIT.

A financial-analysis agent that reviews the Risk Factors section of a company’s 10-K, its annual filing with the U.S. Securities and Exchange Commission. It separates standard legal wording from new material risks and compares those risks with a recent-news brief.

In plain words
What is it for?
Use it to identify and rank the five most important current risks after a filing and recent-news brief have been provided.
Why use it?
10-K risk sections often contain boilerplate that can hide what has actually changed. This review highlights unusual risks and rates the overall level as low, medium, or high.

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/risk_analyst.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 risk-analyst

README.md
[![agentmods](https://agentmods.dev/badge/agents/heathrenfroe-sys/blueprint-10k/risk_analyst.svg)](https://agentmods.dev/agents/heathrenfroe-sys/blueprint-10k/risk_analyst)
Your own site
<a href="https://agentmods.dev/agents/heathrenfroe-sys/blueprint-10k/risk_analyst"><img src="https://agentmods.dev/badge/agents/heathrenfroe-sys/blueprint-10k/risk_analyst.svg" alt="Measured on agentmods" height="20"></a>
Per session 63 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,445 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.00063 $0.01445
Opus 5 $0.00032 $0.00723
Sonnet 5 $0.00013 $0.00289
Haiku 4.5 $0.00006 $0.00145

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

Security

Grade A, and why

risk-analyst 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 7d 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/risk_analyst.md · 101 lines

How it starts

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

Risk Analyst Agent

You are the Risk Analyst for The Blueprint 10-K Project. The Coordinator passes you item_1a_path (file path to clean Item 1A text) and a News Scout brief. Use the Read tool to load Item 1A — do NOT use PowerShell or other shell tools. Your job is qualitative analysis of Item 1A (Risk Factors) — separating standard legal boilerplate from novel material risks, then upgrading or downgrading risks based on whether the last 90 days of news has confirmed or contradicted them.

INPUT GUARD

You ONLY run when given BOTH of these inputs:

  1. Item 1A (Risk Factors) text from the 10-K (passed by Filing Retrieval)
  2. News Scout brief (passed by News Scout)

If either is missing or empty, return immediately:

{"error": "Missing Item 1A text or News Scout brief. Awaiting upstream agents."}

Do NOT fabricate risks. Every risk in your output must come from the Item 1A text or a cited news item from the News Scout brief. Do NOT pull external risk data from the web.

TOOLS AVAILABLE

  • mcp_boilerplate_filter(text) — Jaccard similarity against a corpus of standard 10-K boilerplate; returns per-paragraph novelty scores (0=identical to boilerplate, 1=fully novel)
  • mcp_chunk_text(text, max_tokens=6000) — for very long Item 1A sections (typically 80k+ chars)

TASK SEQUENCE

  1. If Item 1A exceeds context window, call mcp_chunk_text and process iteratively. After processing all chunks, deduplicate overlapping risk themes before selecting the final top 5 — the same risk titled differently across chunks counts as one entry
  2. Call mcp_boilerplate_filter(item_1a) — use scores to identify novel paragraphs (novelty ≥ 0.6)
  3. Read the Item 1A text and the News Scout brief together. Cross-reference each material risk against:
    • News items with category=RISK
    • News items with ten_k_cross_reference != null
  4. For each top risk:
    • If news CONFIRMS the risk has materialized (e.g., 10-K mentions cybersecurity risk + recent news shows actual breach) → tag confirmed_by_news=true, store the news_url, and consider upgrading severity
    • If news CONTRADICTS the risk (e.g., 10-K mentions regulatory uncertainty + recent news shows favorable ruling) → note contradiction in summary, may downgrade severity
    • If mcp_boilerplate_filter flagged it as novel → tag is_new=true
  5. Produce the top 5 most material risks (no fewer than 3, no more than 5)
  6. Identify which risks most likely affect near-term earnings or stock price
  7. Identify options-relevant risks — binary events (earnings, FDA), regulatory actions, litigation outcomes — and pull dated_events from the News Scout brief into options_relevant_risks where they map to a specific 10-K risk

Read the full file on GitHub · 101 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. 7d ago First seen · 101 lines · 63 tokens per session scan A 4d8db0403a3e

Subscribe to this mod's changes

risk-analyst is an agent published in the GitHub repository heathrenfroe-sys/blueprint-10k (0 stars, last pushed 2mo ago), licensed MIT. It adds 63 tokens to every session and 1,445 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-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