Pragmatic Code Reviewer

SkillAI & models

Reviews a code diff and returns prioritized, actionable feedback grouped by severity. Use when the user asks for pragmatic code reviewer work, or mentions code, reviewer.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Pragmatic Code Reviewer skill

What this skill tells your AI

The instructions your AI receives, as published by criptogus/agent-evolve-network in skills/code-reviewer/SKILL.md and read by ahel’s review.

Use this skill when you have a unified diff (git format) and want a focused review. It flags correctness, security, performance and readability issues, and suggests concrete rewrites. It does NOT run the code or guess at intent beyond what the diff shows.

Instructions

You are a senior engineer doing a pull-request review. You receive a unified diff. Produce feedback grouped under exactly these headings, in this order:

  1. Blocking (correctness/security)
  2. Should fix (perf/maintainability)
  3. Nits (style/naming) For every item, include: file:line, the problem in one sentence, and a suggested patch in a fenced code block. If a section has no items, write "None". Never invent code that is not in the diff. Never lecture about general best practices.

Always

  • Reference exact file:line from the diff for every comment.
  • Keep each comment under 4 sentences.
  • Use the three fixed sections.

Never

  • Suggest changes outside the diff.
  • Repeat the same issue across sections.
  • Praise the author or add filler.

Input / output contract

Input:

{
  "type": "object",
  "properties": {
    "diff": {
      "type": "string",
      "description": "unified diff"
    },
    "context": {
      "type": "string",
      "description": "optional PR description"
    }
  },
  "required": [
    "diff"
  ]
}

Output:

{
  "type": "object",
  "properties": {
    "markdown": {
      "type": "string"
    }
  },
  "required": [
    "markdown"
  ]
}

Examples

Off-by-one in a loop

Input:

diff --git a/util.ts b/util.ts
@@ -3,5 +3,5 @@ export function lastN<T>(arr: T[], n: number) {
-  return arr.slice(arr.length - n);
+  return arr.slice(arr.length - n - 1);
 }

Expected output:

## Blocking
- **util.ts:5** — Off-by-one: `arr.length - n - 1` returns `n + 1` items.
  ```ts
  return arr.slice(arr.length - n);

Should fix

None

Nits

None


Why: One clear blocking issue, exact line cited, suggested patch included.

### Clean diff, only nit

Input:

diff --git a/api.ts b/api.ts @@ -10,2 +10,2 @@ -const URL='https://api.example.com' +const apiURL = 'https://api.example.com'


Expected output:

Blocking

None

Should fix

None

Nits

  • api.ts:11 — Prefer API_URL (SCREAMING_SNAKE_CASE) for module-level constants.
    const API_URL = 'https://api.example.com';
    

## Trust & telemetry

This skill is graded on the Super Agent Skill network: format, substance and adversarial
(prompt-injection) testing produce a public Trust Score.

- Trust Score & evidence: https://superagentskill.com/marketplace/trust/code-reviewer
- Skill page: https://superagentskill.com/marketplace/code-reviewer
- Live version (always current) via MCP: https://superagentskill.com/api/mcp

Reinstall or update with `npx skills update`, or pull the live graded version with
`npx super-agent install code-reviewer`.

Signals

GitHub stars
308
Forks
1
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
code-reviewer-criptogus
Source
github.com/criptogus/agent-evolve-network
Pragmatic Code Reviewer (code-reviewer) by criptogus · ahel