sec-edgar-pipeline

sec-edgar-pipeline is a skill for Claude Code from bobmatnyc/claude-mpm-skills. It costs 28 tokens per session (808 once invoked), scanned A, original, MIT.

A workflow for finding company filings in the SEC EDGAR database and extracting selected information from them. EDGAR is the U.S. Securities and Exchange Commission’s public filing system.

In plain words
What is it for?
Use it to locate filings by company identifier, generate extraction code, export results, and produce CSV reports.
Why use it?
It replaces repeated manual searching and copying from long regulatory filings with a defined extraction process and generated reports.

Skill for Claude Code

Written for Claude Code: disable-model-invocation in frontmatter.

Good fit Use it to locate filings by company identifier, generate extraction code, export results, and produce CSV reports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bobmatnyc/claude-mpm-skills/sec-edgar-pipeline
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 bobmatnyc/claude-mpm-skills --skill sec-edgar-pipeline
Clone the repo
git clone --depth 1 https://github.com/bobmatnyc/claude-mpm-skills

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 sec-edgar-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/bobmatnyc/claude-mpm-skills/sec-edgar-pipeline/github.svg)](https://agentmods.dev/skills/bobmatnyc/claude-mpm-skills/sec-edgar-pipeline)
Your own site
<a href="https://agentmods.dev/skills/bobmatnyc/claude-mpm-skills/sec-edgar-pipeline"><img src="https://agentmods.dev/badge/skills/bobmatnyc/claude-mpm-skills/sec-edgar-pipeline/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 sec-edgar-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/bobmatnyc/claude-mpm-skills/sec-edgar-pipeline"><img src="https://agentmods.dev/badge/skills/bobmatnyc/claude-mpm-skills/sec-edgar-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 808 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00028 $0.00808
Opus 5 $0.00014 $0.00404
Sonnet 5 $0.00006 $0.00162
Haiku 4.5 $0.00003 $0.00081

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

Security

Grade A, and why

sec-edgar-pipeline 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 9d 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.

universal/data/sec-edgar-pipeline/SKILL.md · 109 lines

How it starts

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

SEC EDGAR Pipeline

Overview

This pipeline is centered on edgar-analyzer and the EDGAR data sources. The core loop is: configure credentials, create a project with examples, analyze patterns, generate code, run extraction, and export reports.

Setup (Keys + User Agent)

Use the setup wizard to configure required keys:

python -m edgar_analyzer setup
# or
edgar-analyzer setup

Required entries:

  • OPENROUTER_API_KEY
  • (Optional) JINA_API_KEY
  • EDGAR user agent string ("Name [email protected]")

End-to-End CLI Workflow

# 1. Create project
edgar-analyzer project create my_project --template minimal

# 2. Add examples + project.yaml
# projects/my_project/examples/*.json

# 3. Analyze examples
edgar-analyzer analyze-project projects/my_project

# 4. Generate extraction code
edgar-analyzer generate-code projects/my_project

# 5. Run extraction
edgar-analyzer run-extraction projects/my_project --output-format csv

Outputs land in projects/<name>/output/.

EDGAR-Specific Conventions

  • CIK values are 10-digit, zero-padded (e.g., 0000320193).
  • Rate limit: SEC API allows 10 requests/sec. Scripts use ~0.11s delays.
  • User agent is mandatory; include name + email.

Scripted Example (Apple DEF 14A)

edgar/scripts/fetch_apple_def14a.py shows the direct flow:

  1. Fetch latest DEF 14A metadata
  2. Download HTML
  3. Parse Summary Compensation Table (SCT)
  4. Save raw HTML + extracted JSON + ground truth

Recipe-Driven Extraction

edgar/recipes/sct_extraction/config.yaml defines a multi-step pipeline:

  • Fetch DEF 14A filings by company list
  • Extract SCT tables with SCTAdapter
  • Validate with sct_validator
  • Write results to output/sct

Report Generation

edgar/scripts/create_csv_reports.py converts JSON results into:

  • executive_compensation_<timestamp>.csv
  • top_25_executives_<timestamp>.csv
  • company_summary_<timestamp>.csv

Troubleshooting

  • No filings found: confirm CIK formatting and filing type (DEF 14A vs DEF 14A/A).
  • API errors: slow down requests and confirm user-agent is set.
  • Extraction errors: regenerate code or use manual ground truth in POC scripts.

Read the full file on GitHub · 109 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 109 lines · 28 tokens per session scan A e69bb1d60a11

Subscribe to this mod's changes

sec-edgar-pipeline is a skill published in the GitHub repository bobmatnyc/claude-mpm-skills (75 stars, last pushed 1mo ago), licensed MIT. It adds 28 tokens to every session and 808 once invoked, about $0.0001 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-09-03.

Related

Other skills, from other repositories

EdgarTools

Query and analyze SEC filings using EdgarTools.

dgunning/edgartools · 12 tokens

securities-research-analyst

Use when research analysts or investment teams need to turn filings, earnings calls, announcements, financial metrics, and industry data into traceable securities research notes with evidence links, scenario analysis, valuation assumptions, and compliance-safe risk flags.

AndrewNgGirl/SkillLens · 53 tokens

financial-filings-research

Use for questions about a public company's regulatory filings or financials — revenue, EBITDA, net income, debt, cash flow, 10-K/20-F/annual reports, insider transactions, peer or industry screening, or resolving a company by name, ticker, ISIN or LEI via the FinancialReports MCP connector. Carries the workflows plus…

financial-reports/financial-reports-mcp-server · 0 tokens

aether-research

Cited equity research with Aether — routes filing/transcript/regulation questions to the right Aether tool, scopes every call to a named issuer, enforces citation discipline, and never lets an uncited figure into the answer. Use when researching public companies, SEC filings, earnings calls, or EU financial regulation.

EvidInvest/aether-developer · 68 tokens

deltasignal-atlas-7

Use DeltaSignal ATLAS-7 for SEC-grounded issuer intelligence on crypto public companies, including composite MCP presets, readiness, covenant stress, top-stressed issuers, peer ranking, alpha signals, fundamentals, compact daily SEC monitoring, paginated evidence drilldowns, and Azure-native audit status over the free…

aitrailblazer/deltasignal-atlas-codex-plugin · 81 tokens

xvary-stock-research

Use when building thesis-driven equity analysis in Claude Code from public SEC EDGAR data and market snapshots — workflows /analyze, /score, /compare with bundled Python tools.

xvary-research/claude-code-stock-analysis-skill · 41 tokens