Code review for quant
Skills for quant research with LLMs that don't fall for the traps nobody talks about. Lookahead bias, ATM detection, survivorship, transaction-cost realism — 10 skills + 11 reproducible evals showing 8 of them measurably improve Haiku output. Claude Code & Cursor compatible, MIT.
npx -y skills add jefrnc/quant-llm-skills --skill code-review-for-quantAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when reviewing or writing Python/Go/SQL code for quant research, backtests, market-data pipelines, or trading systems. Provides a structured checklist of failure modes specific to time-series financial code (lookahead, splits, snapshots, currency, NaN propagation, joint-filer dedup) that generic code review skips.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
6.0 KB, as published. Nobody here has run it
Code review for quant
Generic code review catches off-by-one errors and missing with blocks.
Quant code has its own failure modes — and they're the ones that
silently corrupt research output without raising. This skill enforces
a domain-specific checklist before approving any quant-touching code.
Core principle
Quant bugs hide as plausible numbers. A backtest that runs cleanly and produces a nice equity curve can still be using future data. The test "did it crash?" is meaningless. The test is "did each datapoint trace to a publication date that precedes the query?".
The checklist
Run this against any function that touches historical financial data.
A. Time semantics
- Every read of historical state takes a
query_dateargument (or equivalent) and filters onfiling_date <= query_date(oraccepted <= query_date). - No use of
period_end,report_date, oras_of_dateas the known-date for filing data. - No use of "current" snapshots (
ticker.info, latest API value) for historical queries. - Splits / reverse splits applied with split-date as the cutoff (not retroactively to all prior dates).
- Adjusted prices not used for absolute price thresholds — adjusted values change as new splits happen.
- Earnings revisions / amendments treated as known only from the amendment's own filing date.
B. Data shape
- Fall-through on missing fields (no
KeyErrorcrashes when XBRL has alternate tags or FPI structure differs). - Fall-through to text-extraction when XBRL returns 404 (FPIs, SPACs, recent IPOs).
- Multi-class share structures handled (Class A + Class B, ADSs + ordinary shares with ratio conversion).
- Currency conversion uses point-in-time FX rate, not current.
C. Aggregation hygiene
- Joint-filer / Section 13(d) group dedup applied before summing insider holdings.
- Form 144 (intent) NOT counted as Form 4 (executed transaction).
- 13F filings treated separately from 13D/G (different lag, different threshold, different dedup rules).
- CUSIP changes (mergers, reverse splits) reconciled by ticker history, not by CUSIP.
D. Numerical hygiene
- Division-by-zero guarded (volume / float, returns / price).
-
None/NaNpropagation explicit — no silent coverage gaps. - Outlier handling explicit — bid/ask crosses, halt periods,
suspicious prints (penny stocks: trades flagged with
condition_codesindicating odd lot / late / out-of-sequence). - Currency precision (Decimal vs float) consistent — float drift compounds over millions of trades.
E. Friction realism
- Slippage modeled as % of price or absolute spread, NOT zero.
- Borrow / hard-to-borrow APR included for short-side simulations.
- Locate-failure probability for very-low-float tickers.
- Bid-ask spread for microcaps (often >5% on actual trades).
- Halts and circuit breakers handled — not all volume is tradeable.
F. Reproducibility
- Random seeds set explicitly for any stochastic component.
- Data freshness recorded (which day was the underlying CSV pulled).
- Environment locked (requirements.txt / go.sum / package-lock).
- Output stamped with both
run_dateanddata_as_of_date.
G. Performance traps
- No O(N) re-reads of the same JSON/CSV inside a
.apply()loop. - No per-bar HTTP / DB calls in tight backtest loops; pre-fetch.
- No accidental quadratic time on date filtering (use indexed lookups, not list comprehensions over the full universe).
Priority order when reviewing
When listing bugs found in a code review, ALWAYS rank by silent-corruption potential, not by severity-of-symptom:
- Look-ahead bias — silently wrong, looks fine
- Snapshot used for history — silently wrong, looks fine
- Joint-filer over-count — silently wrong, looks fine
- Survivorship bias — silently wrong, looks fine
- Split / adjusted-price misuse — silently wrong, looks fine
- Friction-free assumption — silently optimistic
- Performance bug — visible, will be fixed when run
- Crash bug — visible, will be fixed at runtime
- Style / hygiene — least urgent
Anti-pattern: leading the review with "you should use a context
manager for open()" while the function silently uses period_end
as a publication date. The first one is cosmetic; the second corrupts
every backtest result.
Workflow when handed a snippet
- Identify what the function does (state lookup, aggregation, calculation, simulation).
- Walk the relevant section of the checklist above.
- List bugs in silent-corruption order, not in code order.
- For each lookahead-class bug: cite the specific datapoint that
would leak (e.g., "row with
period_end: 2023-12-31is unknowable on 2024-02-01 if the 10-K was filed 2024-02-15"). - Propose fixes that align with
lookahead-safetyand other relevant skills — don't reinvent the rule.
Phrases that should trigger this skill
- "review this code"
- "is this backtest correct"
- "audit my pipeline"
- "find bugs in this script"
- "code review"
- any code block containing
pd.DataFrame,yfinance,requests,polygon,sec,companyfacts,period_end,filing_date,apply(lambda
What this skill is NOT
This is not a generic linter. It does not catch missing semicolons,
unused imports, or PEP8 violations — those are the pre-existing
linter's job. It catches the ~20 quant-specific failure modes that
generic code review consistently misses. Combine with lookahead-safety,
xbrl-fallbacks, insider-dedup and other domain skills for
specific-rule fixes.
Gives 0 of the 12 instructions most code review skills give
Counted across 610 of the 674 authors here whose files we hold, read 2026-08-06
- push back with technical reasoning if wrongin 60 of 610, across 24 files
- ask for clarification on unclear itemsin 51 of 610, across 16 files
- fix critical issues immediatelyin 45 of 610, across 29 files
- implement one item at a timein 45 of 610, across 11 files
- group findings by severityin 44 of 610, across 43 files
- verify feedback against the codebasein 42 of 610, across 8 files
- dispatch a code reviewer subagentin 39 of 610, across 23 files
- fix important issues before proceedingin 37 of 610, across 22 files
- test each fix individuallyin 35 of 610, across 7 files
- reply in github comment threadsin 33 of 610, across 5 files
- check for security vulnerabilitiesin 31 of 610, across 27 files
- factualize corrections without over-explainingin 30 of 610, across 2 files
Said here and by no other author read
- Filter historical reads by filing date
- Prohibit using period_end as known-date
- Apply splits using split-date as cutoff
- Deduplicate joint-filers before summing holdings
- Separate 13F filings from 13D/G filings
- Model slippage and frictions realistically
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once.