Code review for quant
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.From its SKILL.md
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 file declares
Copied from the file, not written here
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, ~1.4k tokens by cl100k_base, 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.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most code review skills give in ~1.4k tokens
Counted across 668 of the 814 authors here whose files we hold, read 2026-09-06
- Provide technical reasoning when pushing backin 84 of 668, across 70 files
- Fix critical issues immediatelyin 77 of 668, across 60 files
- Dispatch a code reviewer subagentin 76 of 668, across 59 files
- Fix important issues before proceedingin 73 of 668, across 56 files
- Ask for clarification on unclear itemsin 68 of 668, across 56 files
- Verify feedback against codebase before implementationin 66 of 668, across 55 files
- Implement fixes one at a timein 64 of 668, across 53 files
- Test each fix individuallyin 62 of 668, across 51 files
- Restate technical requirements in own wordsin 57 of 668, across 46 files
- Reply to inline comments in the specific threadin 51 of 668, across 40 files
- Note minor issues for laterin 49 of 668, across 34 files
- Group findings by severityin 48 of 668, across 47 files
Said here and by no other author read
- filter historical data using filing date
- apply splits using split date
- use point in time FX rates
- deduplicate joint filers before summing
- guard against division by zero
- make NaN propagation explicit
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.