agentsclimarketplace

Code review

Skill kenantang/codex-and-claude-skills/collected-academic-research-skills/sources/flonat__claude-research/skills/code-review

Generated by Codex. Read with caution.

Install
npx -y skills add kenantang/codex-and-claude-skills --skill code-review

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 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 you need a quality review of R, Python, or Julia research scripts. Multi-persona orchestrator with parallel specialist reviewers.

SKILL.md

9.0 KB, ~2.2k tokens by cl100k_base, as published. Nobody here has run it

Research Code Review

Report-only skill. Never edit source files — produce reviews/code-review/YYYY-MM-DD_CODE-REVIEW-REPORT.md only.

When to Use

  • Before submitting a paper (check replication package quality)
  • After writing analysis scripts and before sharing with coauthors
  • When taking over someone else's research code
  • As part of the Referee 2 agent's formal audit pipeline

When NOT to Use

  • Understanding old code — use /code-archaeology first to map out what exists
  • Formal verification — use the Referee 2 agent for cross-language replication
  • General software projects — this is for research scripts, not applications

Architecture

Orchestrator + parallel specialist reviewers. The main context runs a baseline checklist, then spawns 3-6 specialist sub-agents in parallel. Each reviewer produces structured JSON findings. The orchestrator deduplicates, merges, and synthesizes a single report.

Phase 1: Scope → Phase 2: Baseline Checklist → Phase 3: Spawn Reviewers
→ Phase 4: Merge & Dedup → Phase 5: Synthesize Report

Phase 1: Scope Detection

  1. Locate scripts: Find all .R, .py, .jl, .do files in the project (or the specified path)
  2. Count and classify: Report file count, languages, total lines of code
  3. Read project CLAUDE.md (if it exists) for domain context, estimand, methodology

If no code files found, stop: "No code files found at [path]."


Phase 2: Baseline Checklist (main context, fast pass)

Run through all 11 categories as a quick structural check. This catches mechanical issues that don't need specialist reviewers.

11 Checklist Categories

See references/checklist-categories.md for detailed specifications of all 11 categories: Reproducibility, Script Structure, Output Hygiene, Function Quality, Domain Correctness, Figure Quality, Data Persistence, Dependencies, Python-Specific, R-Specific, and Cross-Language Verification.

Record checklist results (Pass/Fail/N/A per category) for the report. Continue to Phase 3 regardless of results.


Phase 3: Spawn Specialist Reviewers

Read references/persona-catalog.md for the full persona definitions and selection logic.

3a. Select Reviewers

Always spawn (3 reviewers):

  • correctness-reviewer — logic errors, bugs, state issues
  • reproducibility-reviewer — seeds, paths, environment, portability
  • design-reviewer — structure, naming, dead code, complexity

Conditionally spawn (scan code to decide):

  • domain-reviewer — if statistical/econometric methods detected
  • performance-reviewer — if loops over data, DB queries, or expensive operations detected
  • security-reviewer — if user input handling, HTTP, SQL, shell commands, or credentials detected

3b. Announce Team

Before spawning, list the team:

Review team: correctness, reproducibility, design, domain (detected: lm() with cluster SEs)

3c. Spawn in Parallel

For each selected reviewer, launch a sub-agent (subagent_type: "general-purpose", model: "haiku") with:

  1. Read references/subagent-template.md — substitute {persona_name} and {persona_content} from the catalog
  2. Pass the file list and instruct the agent to read each file
  3. Instruct: return ONLY JSON matching references/findings-schema.json

All reviewers run in parallel — launch them in a single message with multiple Agent tool calls.


Phase 4: Merge & Deduplicate

After all reviewers return:

4a. Validate

  • Parse each reviewer's JSON output
  • Drop malformed findings (note count of dropped findings)
  • Drop findings with confidence < 0.60 (exception: P0 at 0.50+ survives)

4b. Deduplicate

Fingerprint each finding:

fingerprint = normalize(file) + line_bucket(line, ±3) + normalize(title)

Where:

  • normalize() = lowercase, strip whitespace
  • line_bucket(line, ±3) = any line within ±3 of another is considered the same location

When fingerprints match across reviewers:

  • Keep the highest severity
  • Keep the highest confidence + union all evidence
  • Record which reviewers agreed (e.g., "correctness, domain")
  • Cross-reviewer agreement bonus: +0.10 confidence (capped at 1.0)

4c. Map to Quality Rubric

Map each merged finding to the closest entry in references/quality-rubric.md to determine the deduction. If no exact match, classify by severity tier and use the midpoint deduction.

4d. Sort

Sort findings: P0 first → P1 → P2 → P3, then by confidence (descending), then by file, then by line.


Phase 5: Synthesize Report

Create reviews/code-review/ if it does not exist (mkdir -p). Write reviews/code-review/YYYY-MM-DD_CODE-REVIEW-REPORT.md in the project directory (date-stamped so prior reports are preserved, matching the pattern used by paper-critic, peer-reviewer, domain-reviewer, referee2-reviewer, and proofread).

Report Format

# Code Review Report

**Project:** [path]
**Date:** YYYY-MM-DD
**Scripts reviewed:** [list with line counts]
**Languages:** R / Python / Julia / Both
**Review team:** [list of reviewers with conditional justifications]

## Quality Score

| Metric | Value |
|--------|-------|
| **Score** | XX / 100 |
| **Verdict** | Ship / Ship with notes / Revise / Revise (major) / Blocked |

### Deductions

| # | Issue | Tier | Deduction | Category | Reviewer(s) | Confidence |
|---|-------|------|-----------|----------|-------------|------------|
| 1 | [title] | P0 | -25 | Domain Correctness | domain, correctness | 0.92 |
| 2 | [title] | P1 | -15 | Reproducibility | reproducibility | 0.85 |
| ... | | | | | | |
| | **Total deductions** | | **-XX** | | | |

## Checklist Scorecard

| # | Category | Result | Notes |
|---|----------|--------|-------|
| 1 | Reproducibility | Pass/Fail | |
| 2 | Script structure | Pass/Fail | |
| ... | | | |
| 11 | Cross-language verification | Pass/Fail/N/A | |

**Checklist: X/11 Pass** (adjust denominator for N/A categories)

## Detailed Findings

### P0 — Blocker

| # | File | Issue | Reviewer(s) | Confidence | Evidence |
|---|------|-------|-------------|------------|----------|
| 1 | path:line | [title + why_it_matters] | [reviewers] | 0.92 | [evidence] |

### P1 — Critical
[same format, omit if empty]

### P2 — Major
[same format, omit if empty]

### P3 — Minor
[same format, omit if empty]

## Residual Risks

[Union of residual_risks from all reviewers — things that can't be verified from code alone]

## Priority Fixes

1. [Most impactful issue — what to fix first]
2. [Second]
3. [Third]

## Positive Observations

[Things done well — important for morale and learning]

## Review Metadata

- Reviewers spawned: [N]
- Findings before dedup: [N]
- Findings after dedup: [N]
- Findings suppressed (low confidence): [N]
- Cross-reviewer agreements: [N]

Confidence Filtering

  • Suppress findings below 0.60 confidence (exception: P0 at 0.50+)
  • Consolidate identical patterns: 5 instances of the same issue = 1 finding with count in evidence
  • Cross-reviewer agreement boosts confidence by +0.10 (capped at 1.0)
  • Never pad the report with low-confidence observations

Quality Scoring

Apply numeric quality scoring using the shared framework and skill-specific rubric:

Start at 100, deduct per issue found, apply verdict.


Council Mode (Optional)

For complex codebases or high-stakes replication packages, run the code review across multiple LLM providers. Different models have different strengths: some excel at spotting statistical errors, others at code structure or reproducibility issues.

Trigger: "Council code review" or "thorough code review"

How it works:

  1. Each model independently scores all 11 categories against the same scripts
  2. Cross-review: models evaluate each other's findings — catching false positives and missed issues
  3. Chairman synthesis: produces a single reviews/code-review/YYYY-MM-DD_CODE-REVIEW-REPORT.md with the union of confirmed findings

See skills/shared/council-protocol.md for the full orchestration protocol.


Cross-References

  • /code-archaeology — For understanding unfamiliar code before reviewing it
  • Referee 2 agent — For formal cross-language replication and verification
  • /proofread — For the paper that accompanies this code
  • references/persona-catalog.md — Reviewer persona definitions and selection logic
  • references/findings-schema.json — JSON output contract for sub-agents
  • references/subagent-template.md — Prompt template for spawning reviewers

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.