requesting-code-review

requesting-code-review is a skill for Claude Code, Codex from andreaswasita/copilot-agents-dojo. It costs 16 tokens per session (1,122 once invoked), scanned A, original, MIT.

A self-review process that compares completed code with the original written plan before the work is declared finished or sent for review. It groups problems by seriousness and stops on critical findings.

In plain words
What is it for?
Use it after implementation, between major phases, before opening a pull request, or after delegated work returns. It inspects the changes, acts on findings, and produces a short completion summary.
Why use it?
It reduces the chance of shipping missing requirements, security problems, or broken tests. It gives human reviewers a clearer starting point, but does not replace their review.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it after implementation, between major phases, before opening a pull request…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/andreaswasita/copilot-agents-dojo/requesting-code-review
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 andreaswasita/copilot-agents-dojo --skill requesting-code-review
Clone the repo
git clone --depth 1 https://github.com/andreaswasita/copilot-agents-dojo

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 requesting-code-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/andreaswasita/copilot-agents-dojo/requesting-code-review.svg)](https://agentmods.dev/skills/andreaswasita/copilot-agents-dojo/requesting-code-review)
Your own site
<a href="https://agentmods.dev/skills/andreaswasita/copilot-agents-dojo/requesting-code-review"><img src="https://agentmods.dev/badge/skills/andreaswasita/copilot-agents-dojo/requesting-code-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,122 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.
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.00016 $0.01122
Opus 5 $0.00008 $0.00561
Sonnet 5 $0.00003 $0.00224
Haiku 4.5 $0.00002 $0.00112

Measured 7d ago against content hash 9cb9e31cbcbc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

requesting-code-review 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 7d 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/requesting-code-review/SKILL.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Requesting Code Review Skill

Self-reviews the agent's own output against the original plan before declaring done or opening a PR. Surfaces issues by severity; critical issues block progress. Does NOT replace human review — it ensures the human review starts from a defensible baseline.

When to Use

  • A task or batch of tasks is complete.
  • Between major implementation phases.
  • Before creating a pull request.
  • Before telling the user "done" on any non-trivial change.
  • After a sub-agent returns delegated work.

Prerequisites

  • An approved plan in tasks/todo.md (or equivalent design doc).
  • The view and grep tools to read the diff and surrounding code.
  • git for the diff inspection.
  • A green test run (the verify-before-done skill should already have run).

How to Run

1. Compare implementation to the plan spec, criterion by criterion.
2. Walk the self-review checklist.
3. Tag each finding 🔴 / 🟡 / 🟢 / ✅.
4. Act on findings — 🔴 blocks, 🟡 fixed before PR, 🟢 logged.
5. Emit a short summary before claiming completion.

Quick Reference

Severity Meaning Action
🔴 Critical Wrong behavior, security risk, broken test STOP. Fix before next task.
🟡 Major Should fix before merge Fix before PR; OK to continue current task
🟢 Minor Style, nit, future improvement Log to tasks/todo.md follow-ups
✅ Passing Criterion met Note in summary
Checklist item Look at
Matches plan spec tasks/todo.md
Tests pass (including new) Latest test run output
No debug artifacts grep for console.log, print, TODO
Edge cases covered The new test file
No security regressions Auth, input validation, secrets
Follows project conventions Adjacent files
Diff scope = task scope git diff main --stat

Procedure

Step 1: Compare to Plan

Open tasks/todo.md with view. For the task just completed, read its acceptance criteria. Tick each one explicitly — do not summarize.

Read the full file on GitHub · 133 lines

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. 7d ago First seen · 133 lines · 16 tokens per session scan A 9cb9e31cbcbc

Subscribe to this mod's changes

requesting-code-review is a skill published in the GitHub repository andreaswasita/copilot-agents-dojo (51 stars, last pushed 1mo ago), licensed MIT. It adds 16 tokens to every session and 1,122 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

code-review

Use to judge a concrete diff, branch, or GitHub PR on its own merits with no rsc-SDD spec/plan chain to key off — the spec-less giving pass behind /code-review: only findings you can defend, one verdict, read-only unless --comment or --fix. NOT the SDD gate keyed to 02-DOCS/wiki/sdd/ that also processes incoming…

ericrisco/rsc-harness · 90 tokens

quality-gate

Use when you need to check if current work meets quality thresholds before proceeding to the next phase or merging.

mattmre/EVOKORE-MCP-PUBLIC · 25 tokens

sage-review

Deep, platform-neutral code review for PRs and CRs in ONE thorough single pass — design reasoning (Problem Worth Solving & Solution Fit) as one dimension alongside the 9 code-level dimensions, with chain-of-consequences, self-critique, and draft-only comments. The single app-owned source of truth.

kirodotdev/KiroCrew · 68 tokens

moai-ref-cross-model-audit

Cross-model audit convergence reference for the plan-auditor and sync-auditor agents. Documents how to invoke the auditmulti MCP tool to fan a code review out across the codex and GLM (z.ai) backends in parallel, converge their verdicts with the in-session Claude verdict, and fold the resulting per-backend verdicts +…

modu-ai/moai-adk · 99 tokens

moai-foundation-quality

TRUST 5 quality principles and how MoAI enforces them through agents, the 3-level harness, /moai gate, and sync-auditor scoring. Use for code review, quality gate checks, coverage targets, or TRUST 5 compliance.

modu-ai/moai-adk · 58 tokens

reviewing-changes

Use when a review package asks you to review a plan step's change set (todo.startReview): you are the REVIEWER, not the author. How to judge an agent-written diff, file findings with addreviewcomment, and settle with exactly one reviewverdict.

JetBrains/thinkrail · 59 tokens