analyst-tracker
Track sell-side analyst positioning on a name via Benzinga Analyst Ratings. Pulls every rating event over the lookback window, classifies each as upgrade /…
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 carries N tagged Items), ranks by signal bucket (M&A / Restatement / Material agreement / Regulatory / Leadership change /
$ npx -y skills add rgourley/quant-garage --skill 8-k-scanner --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/8-k-scannerContext preview
The summary Claude sees to decide when to auto-load this skill.
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 carries N tagged Items), ranks by signal bucket (M&A / Restatement / Material agreement / Regulatory / Leadership change /
name: 8-k-scanner description: 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 carries N tagged Items), ranks by signal bucket (M&A / Restatement / Material agreement / Regulatory / Leadership change / Capital / Earnings / Corporate housekeeping / Other), and surfaces the highest-signal filings at the top with the supporting text quoted. Use when a PM or analyst asks "what material events hit my names this week?" Requires Stocks Basic. Runs on the free tier.
You hand over a ticker or a watchlist. The skill pulls every 8-K disclosure filed against those issuers over the lookback window, groups the taxonomy rows into filings (one 8-K = many tagged Items, one accession number), ranks by signal bucket (M&A / Restatement / Material agreement / Regulatory / Leadership change / Capital / Earnings / Corporate housekeeping / Other), and surfaces the high-signal filings first with the supporting text quoted.
This is the "what materially happened this week" read a PM does by skimming SEC filings each morning. It works because Massive already parses and taxonomically classifies every Item in every 8-K into a three-tier taxonomy (primary, secondary, tertiary). No text NLP on our side.
disclosures, or debt-covenant events across a portfolio
leadership changes", "did anyone in my book file an 8-K"
Not for: single-item drill-down on one specific 8-K (use the underlying `/8-K/vX/text` endpoint or read the filing on EDGAR). Not for the full 8-K narrative (this quotes supporting text at ~220 chars per Item).
`/stocks/filings/8-K/vX/disclosures` endpoint is included on every Stocks plan.
Optional:
to (e.g. `strategic_transactions,leadership_and_governance`).
Two output layers from one run.
**Layer 1: canonical JSON** matching [`output-schema.json`](./output-schema.json). Per-filing block includes `accession_number`, `filing_date`, `tickers`, `filing_url`, and every tagged `categories[]` tuple (`primary`, `secondary`, `tertiary`, `supporting_text`). Top level gives `by_bucket` (M&A / Leadership / etc counts), `by_ticker` (per-name filing count with bucket breakdown), and `by_primary_category` (raw category counts).
**Layer 2: rendered note**. Header + by-signal one-liner + filings grouped by signal bucket in priority order, most-recent-first within a bucket. Each filing lists its tagged Items with the supporting text quoted. One-line Take at the end. See [`references/rendering.md`](./references/rendering.md).
1. **Pull disclosures** for the watchlist via `GET /stocks/filings/8-K/vX/disclosures?tickers.any_of={T1,T2,...}&filing_date.gte={D}&limit=1000&sort=filing_date.desc`. Massive returns one row per (accession, tagged Item) so a single 8-K with three Items produces three rows sharing an `accession_number`. 2. **Group by accession_number.** Union of tagged tuples per filing; deduplicated `(primary, secondary, tertiary)` triples with the supporting text preserved. 3. **Assign a headline signal bucket** based on the first primary category the filing hits from the ranked bucket list. Buckets in descending priority: M&A / Strategic → Restatement / Restructuring → Material agreement → Regulatory / Legal → Leadership change → Capital / Debt → Earnings / Guidance → Corporate housekeeping → Other. 4. **Sort filings** by bucket priority first, then filing date descending within a bucket. The reader sees the highest-signal filings up top and can stop reading once they hit routine items. 5. **Take.** One line summarizing which signal buckets fired.
Taxonomy reference: full primary/secondary/tertiary list at `/stocks/taxonomies/vX/disclosures`. See [`references/methodology.md`](./references/methodology.md) for the signal-bucket ranking.
retry, and pagination on the filings endpoint.
Narrative note. A watchlist-scale scan produces a small number of filings (typically 5-50 for 30 days on 5-15 tickers); a wide table would lose the supporting-text quotes that let a reader triage the filing without opening EDGAR.
All 8-K disclosure rows for the ticker set in the window. Paginated; one call per page.
(categorized Item excerpts). Full plain-text 8-K bodies live at `/stocks/filings/8-K/vX/text` and would be a natural companion for a "read the whole filing" flow.
filing. Loughran-McDonald finance dictionary scoring would be a clean PR extension for a `filing-sentiment` skill; queued.
activist target that files 3 8-Ks in a week is different from AAPL doing the same. Queued.
would compute the abnormal-return distribution around each 8-K by category. Queued.
yet. Callers who want to run against 3 sector baskets do 3 runs.
These are clean PR extensions. The ou
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.
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…
Scan for material 8-K corporate actions over a lookback window. For a ticker or watchlist, pulls SEC EDGAR 8-K filings, filters to material items (offerings,…