review-checklist

review-checklist is a skill for Claude Code, Codex from nebius/nebius-physical-ai. It costs 31 tokens per session (329 once invoked), scanned A, original, Apache-2.0.

A review guide for checking code changes for common safety and reliability problems. It covers areas such as permissions, error handling, cleanup, configuration, and parallel runs.

In plain words
What is it for?
Use it when reviewing APIs, cloud permissions, exception handling, temporary files, cleanup logic, configuration lookup, concurrency, and version pins.
Why use it?
It helps reviewers find changes that could break existing users, grant too much access, hide failures, or make concurrent agent runs interfere with each other.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it when reviewing APIs, cloud permissions, exception handling, temporary files, cleanup logic, configuration lookup, concurrency, and version pins.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/nebius/nebius-physical-ai/review-checklist
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add nebius/nebius-physical-ai --skill review-checklist
Clone the repo
git clone --depth 1 https://github.com/nebius/nebius-physical-ai

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for review-checklist

README.md
[![agentmods](https://agentmods.dev/badge/skills/nebius/nebius-physical-ai/review-checklist/github.svg)](https://agentmods.dev/skills/nebius/nebius-physical-ai/review-checklist)
Your own site
<a href="https://agentmods.dev/skills/nebius/nebius-physical-ai/review-checklist"><img src="https://agentmods.dev/badge/skills/nebius/nebius-physical-ai/review-checklist/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for review-checklist

Your own site · 80×15
<a href="https://agentmods.dev/skills/nebius/nebius-physical-ai/review-checklist"><img src="https://agentmods.dev/badge/skills/nebius/nebius-physical-ai/review-checklist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 329 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00031 $0.00329
Opus 5 $0.00015 $0.00164
Sonnet 5 $0.00006 $0.00066
Haiku 4.5 $0.00003 $0.00033

Measured 11d ago against content hash 735f7f44e287, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

review-checklist scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/atomic/review-checklist/SKILL.md · 19 lines

What it actually says

Review Checklist

Prioritize findings that can break users, expand permissions, hide failures, or make parallel agent runs unsafe.

  • API contract safety: are new endpoints backward compatible? Does removing a field break existing callers?
  • Silent IAM expansion: any change that quietly adds new IAM permissions is a HIGH finding. It must be explicit and operator-approved.
  • Exception handling: bare except: or overly broad except Exception: that discards traceback context is a MEDIUM finding. Prefer typed exceptions with raise ... from e.
  • Cleanup safety: cleanup code must be best-effort. Use try/finally; never let cleanup raise and abort the cleanup sequence. also_teardown_controller=False is the established safe default for SkyPilot.
  • Narrow exception paths: test coverage for failure paths such as submit failure, auth failure, and cleanup failure is required. Absence is a MEDIUM finding.
  • Concurrent run safety: does the code handle parallel Codex runs safely? Check for file ownership assumptions and missing commit-lock patterns.
  • Config injection consistency: config should resolve through one precedence-ordered path: explicit arg, then env var, then config file. Inconsistent resolution is a MEDIUM finding.
  • Temp file leaks: tempfile.mkdtemp without cleanup on exception paths is a MEDIUM finding. Prefer TemporaryDirectory context manager.
  • Version pins: required dependency versions should be asserted at runtime, not just documented.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 19 lines · 31 tokens per session scan A 735f7f44e287

Subscribe to this mod's changes

review-checklist is a skill published in the GitHub repository nebius/nebius-physical-ai (28 stars, last pushed today), licensed Apache-2.0. It adds 31 tokens to every session and 329 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.