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…
Track sell-side analyst positioning on a name via Benzinga Analyst Ratings. Pulls every rating event over the lookback window, classifies each as upgrade / downgrade / initiation / reiteration / drop-coverage / PT-change, aggregates the latest rating and price target per firm,
$ npx -y skills add rgourley/quant-garage --skill analyst-tracker --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/analyst-trackerContext preview
The summary Claude sees to decide when to auto-load this skill.
Track sell-side analyst positioning on a name via Benzinga Analyst Ratings. Pulls every rating event over the lookback window, classifies each as upgrade / downgrade / initiation / reiteration / drop-coverage / PT-change, aggregates the latest rating and price target per firm,
name: analyst-tracker description: Track sell-side analyst positioning on a name via Benzinga Analyst Ratings. Pulls every rating event over the lookback window, classifies each as upgrade / downgrade / initiation / reiteration / drop-coverage / PT-change, aggregates the latest rating and price target per firm, and reports the current consensus (median PT across firms plus buy/hold/sell distribution). Uses Massive's built-in Benzinga integration. Requires Stocks Basic + Benzinga Analyst Ratings entitlement.
You hand over a ticker. The skill pulls every analyst rating event Benzinga has on record over the lookback window, buckets each firm's raw rating string to a standard scale (buy / hold / sell), classifies the event (upgrade / downgrade / initiation / reiteration / PT-change / drop-coverage), aggregates the latest per firm, and reports the consensus median price target plus buy/hold/sell distribution.
This is the sell-side lens the repo was missing. Pairs cleanly with `insider-flow` (internal vs external sentiment on the same name) and `guidance-tracker` (analyst reaction vs management's own projections).
how much
cue
"downgrades", "price target", "consensus"
Not for: analyst quality or track record (Benzinga returns the ratings, not the historical accuracy). Not for real-time (Benzinga updates within minutes but this is not a tick feed).
The endpoint returns NOT_AUTHORIZED without it; skill emits a clean tier caveat rather than a raw error.
Optional:
Two output layers from one run.
**Layer 1: canonical JSON** matching [`output-schema.json`](./output-schema.json). Per-event: `date`, `firm`, `analyst`, `rating_raw`, `rating_bucket` (buy / hold / sell / other / unknown), `previous_rating_raw`, `event_label` (upgrade / downgrade / initiation / reiteration / price_target_change_only / drop_coverage / other), `price_target`, `previous_price_target`, `pt_direction`, `pt_delta_pct`. Top-level `summary` with event counts, per-firm latest rating distribution, and consensus median / low / high price target.
**Layer 2: rendered note**. Header + summary line + rating distribution + consensus PT, timeline of the last 25 events, one-line Take. See [`references/rendering.md`](./references/rendering.md).
1. **Pull ratings** via `GET /benzinga/v1/ratings?ticker={T}&date.gte={D}&limit=1000&sort=date.desc`. 2. **Bucket rating strings** using standard synonym sets. Buy set: buy, strong buy, outperform, overweight, positive, add, accumulate, top pick. Hold set: hold, neutral, market perform, equal-weight, in-line. Sell set: sell, underperform, underweight, reduce, negative. Anything else lands in "other". 3. **Classify each event.** Rating actions like initiates_coverage_on, upgrade, downgrade, maintains, reiterates map directly. When Benzinga omits the action but the bucket changed, infer upgrade/downgrade from the bucket transition. 4. **Detect price-target-only changes.** Reiterated rating + changed PT gets labeled `price_target_change_only`. 5. **Aggregate latest per firm.** Because ratings come newest-first, the first row per firm gives the latest state. Median across firms is the consensus PT; buy/hold/sell counts describe the distribution.
retry, and pagination.
Narrative note with a timeline. A single-name analyst history is typically 20-100 events over 6 months; note format reads better than a wide table.
event for the ticker in the window.
analyst.
raise PT while keeping a Hold rating (or vice versa); these are reported separately, not reconciled.
composite: "did the analyst move after management guided?"
PTs; the narrative from Bulls Bears Say is a separate endpoint.
Queued as a composite.
These are clean PR extensions. 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…
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,…