# Researchstack Code Review

> Research-code review skill for systems, networking, and AI projects. Use when Codex should review experiment code, simulators, training pipelines, benchmarks, data processing, or plotting logic with emphasis on correctness, reproducibility, and whether the implementation really supports the paper's claims.

- Skill: `lqf0624/researchstack-code-review` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add lqf0624/researchstack-code-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/lqf0624/researchstack-code-review/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: lqf0624 (https://skillmd.com/u/lqf0624)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/lqf0624/researchstack-code-review

---


# Code Review

Review with a research lens, not only software style.

Prioritize:

1. Correctness bugs that invalidate conclusions.
2. Mismatches between claimed methodology and implemented behavior.
3. Reproducibility and configuration hazards.
4. Benchmark or evaluation bias.
5. Missing tests around scientific assumptions.
6. Performance-boundary changes presented as mechanism improvements.

Look for:

- accidental leakage between training and evaluation,
- simulator shortcuts hidden behind default flags,
- inconsistent preprocessing across baselines,
- unit mistakes,
- silent fallback behavior,
- plotting or aggregation bugs,
- misuse of randomness and seeds,
- benchmark harness changes that break comparability.
- caching or precomputation whose reuse assumptions do not hold for dynamic inputs,
- required work moved outside the timed path without an end-to-end metric.

If no severe bug is found, still report residual validity risks.

