8-k-scanner
Scan SEC 8-K disclosures across a single ticker or a watchlist using Massive's pre-parsed disclosure taxonomy. Groups the underlying rows by filing (one 8-K…
Diff Item 1A Risk Factors between two 10-K filings for a name using Massive's pre-parsed and taxonomy-classified risk-factor endpoint. Reports categories added, categories removed, and categories where the supporting text materially changed (>= 25% length delta) year-over-year.
$ npx -y skills add rgourley/quant-garage --skill risk-factor-delta --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/risk-factor-deltaContext preview
The summary Claude sees to decide when to auto-load this skill.
Diff Item 1A Risk Factors between two 10-K filings for a name using Massive's pre-parsed and taxonomy-classified risk-factor endpoint. Reports categories added, categories removed, and categories where the supporting text materially changed (>= 25% length delta) year-over-year.
name: risk-factor-delta description: Diff Item 1A Risk Factors between two 10-K filings for a name using Massive's pre-parsed and taxonomy-classified risk-factor endpoint. Reports categories added, categories removed, and categories where the supporting text materially changed (>= 25% length delta) year-over-year. Groups by primary category so the reader sees the shape of what changed, not a flat diff. Use when a PM, credit analyst, or fundamental researcher asks "what did management add to Item 1A this year?" Requires Stocks Basic. Runs on the free tier.
You hand over a ticker. The skill pulls the most recent 10-K risk-factor disclosures and the one before it, diffs the standardized category taxonomy, and reports what management added, dropped, and materially rewrote year-over-year.
This is the "what changed in Item 1A?" read that fundamental analysts do by hand. It works because Massive already parses and categorizes risk factors from every 10-K into a three-tier taxonomy (primary, secondary, tertiary). No NLP on our end. No EDGAR text scraping.
risks flagged for the first time this cycle
risk-factor additions across a basket
"compare risk factors YoY"
Not for: single-filing risk catalog (fine as a fallback but the primary value is the delta). Not for prose-level word-for-word diff (this is a category-level diff with supporting text quoted for confirmation).
endpoint is included on every Stocks plan.
Optional:
Defaults to the most recent on record.
Defaults to the second-most-recent on record.
Two output layers from one run.
**Layer 1: canonical JSON** matching [`output-schema.json`](./output-schema.json). Top-level: `filings.current`, `filings.prior`, and `summary` counts (added, removed, materially changed, retained unchanged). `changes.added[]`, `changes.removed[]`, `changes.materially_changed[]` each carry per-entry `{primary_category, secondary_category, tertiary_category, supporting_text}`. Materially-changed entries also include `prior_supporting_text`, both lengths, and `length_delta_pct`.
**Layer 2: rendered narrative**. Header with the delta counts, three sections (NEW / DROPPED / MATERIALLY CHANGED) grouped by primary category, each with the supporting-text quote so the reader can confirm the taxonomy call, followed by a one-line Take. See [`references/rendering.md`](./references/rendering.md).
1. **Pull risk factors** for the ticker via `GET /stocks/filings/vX/risk-factors?ticker={T}&limit=50000&sort=filing_date.desc`. Massive returns one row per unique (primary, secondary, tertiary) category per filing, with a supporting-text snippet. 2. **Group by filing_date.** Each 10-K filing produces N rows all sharing the same `filing_date`. Sort dates descending; pick the two most recent as `current` and `prior` (or use the caller-supplied dates). 3. **Diff by category tuple.** For every (primary, secondary, tertiary):
materially changed. Otherwise retained unchanged. 4. **Group results by primary category.** The primary axis is the headline shape ("all the new categories are financial_and_market"). Secondary/tertiary render as bullets under it. 5. **Take.** One sentence summarizing counts and the concentration of new categories.
Massive's taxonomy comes from a published research paper linked in the endpoint docs; see [`references/methodology.md`](./references/methodology.md).
retry, and pagination on the filings endpoint.
Narrative note. This is a category-level diff on a small number of rows (10-K risk factors typically 15-40 per filing); a wide table would waste space. The rendered format optimizes for a fundamental analyst reading the delta once, then quoting the supporting text into a note or a call.
All categorized risk factors for the ticker across every 10-K on record. One paginated call.
"materially changed" proxy and quotes the current supporting text. A proper word-level diff (highlighting added/removed phrases) would be a clean PR extension.
new regulatory risk factors YoY") would compose this skill and aggregate by primary_category. Queued.
covers annual 10-K disclosures only for the diff. 10-Q updates are a separate lane.
trajectory over N years" view would surface which categories are chronic vs newly-appearing; queued.
yet. The taxonomy makes this trivially composable; queued as a separate `peer-risk-comparison` skill.
These are clean PR extensions. The output schema is forward-compatible.
Trade like a pro. Without the terminal. View the full landing page → Quant and equity research tools that run inside Claude, or behind your own UI.
Scan SEC 8-K disclosures across a single ticker or a watchlist using Massive's pre-parsed disclosure taxonomy. Groups the underlying rows by filing (one 8-K…
Track sell-side analyst positioning on a name via Benzinga Analyst Ratings. Pulls every rating event over the lookback window, classifies each as upgrade /…
Build a clean, point-in-time, ready-to-backtest OHLCV dataset for a US equity universe across an arbitrary date window. Emits parquet plus a manifest plus an…
Bayesian Online Change-Point Detection (BOCPD) on a ticker's daily log returns. Detects points in time where the return-generating distribution changed (regime…
Single-commodity macro read. Answers "is this commodity in a winning or losing macro setup right now" and names the macro driver that dominates it. Pulls one…
Reconcile a position file against splits, dividends, and spinoffs to catch breaks before they hit P&L or T+1 settlement. Use when an operator hands over a CSV…