petdex: Skill for Claude Code

.agents/skills/code-review-excellence/SKILL.md

code-review-excellence is a skill for Claude Code, Codex from crafter-station/petdex. It costs 42 tokens per session (3,091 once invoked), scanned A, a copy of code-review-excellence, MIT.

A set of guidelines for reviewing code changes, such as pull requests, for bugs, maintainability, and team standards.

In plain words
What is it for?
Use it to review pull requests, create review checklists, assess architecture, mentor developers, and improve team review practices.
Why use it?
It helps reviewers give clear, useful feedback without turning reviews into personal criticism or unnecessary delays.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is crafter-station/petdex's own configuration. It tells Claude Code and Codex how to work on petdex itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything petdex configures →

About the project

Petdex is a gallery, installer, and desktop application for animated pets that accompany coding agents. People browse and submit pets through its website, install them with a command-line tool, and use the desktop app to display reactions to agent activity. The catalogue includes skills and instructions for creating or using these pets with supported coding agents.

crafter-station/petdex · 4,052 stars · on GitHub · petdex.dev

Reuse

Borrowing it

Nothing to install: this file belongs to crafter-station/petdex. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/crafter-station/petdex/main/.agents/skills/code-review-excellence/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/crafter-station/petdex

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/crafter-station/petdex/code-review-excellence/github.svg)](https://agentmods.dev/skills/crafter-station/petdex/code-review-excellence)
Your own site
<a href="https://agentmods.dev/skills/crafter-station/petdex/code-review-excellence"><img src="https://agentmods.dev/badge/skills/crafter-station/petdex/code-review-excellence/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 code-review-excellence

Your own site · 80×15
<a href="https://agentmods.dev/skills/crafter-station/petdex/code-review-excellence"><img src="https://agentmods.dev/badge/skills/crafter-station/petdex/code-review-excellence.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,091 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 100% copy Near-identical to another mod 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.00042 $0.03091
Opus 5 $0.00021 $0.01545
Sonnet 5 $0.00008 $0.00618
Haiku 4.5 $0.00004 $0.00309

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

Security

Grade A, and why

code-review-excellence 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 9d 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.

Origin

This is a copy

100% identical to code-review-excellence — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/code-review-excellence/SKILL.md · 530 lines

How it starts

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

Code Review Excellence

Transform code reviews from gatekeeping to knowledge sharing through constructive feedback, systematic analysis, and collaborative improvement.

When to Use This Skill

  • Reviewing pull requests and code changes
  • Establishing code review standards for teams
  • Mentoring junior developers through reviews
  • Conducting architecture reviews
  • Creating review checklists and guidelines
  • Improving team collaboration
  • Reducing code review cycle time
  • Maintaining code quality standards

Core Principles

1. The Review Mindset

Goals of Code Review:

  • Catch bugs and edge cases
  • Ensure code maintainability
  • Share knowledge across team
  • Enforce coding standards
  • Improve design and architecture
  • Build team culture

Not the Goals:

  • Show off knowledge
  • Nitpick formatting (use linters)
  • Block progress unnecessarily
  • Rewrite to your preference

2. Effective Feedback

Good Feedback is:

  • Specific and actionable
  • Educational, not judgmental
  • Focused on the code, not the person
  • Balanced (praise good work too)
  • Prioritized (critical vs nice-to-have)
❌ Bad: "This is wrong."
✅ Good: "This could cause a race condition when multiple users
access simultaneously. Consider using a mutex here."

❌ Bad: "Why didn't you use X pattern?"
✅ Good: "Have you considered the Repository pattern? It would
make this easier to test. Here's an example: [link]"

❌ Bad: "Rename this variable."
✅ Good: "[nit] Consider `userCount` instead of `uc` for
clarity. Not blocking if you prefer to keep it."

3. Review Scope

What to Review:

  • Logic correctness and edge cases
  • Security vulnerabilities
  • Performance implications
  • Test coverage and quality
  • Error handling
  • Documentation and comments
  • API design and naming
  • Architectural fit

What Not to Review Manually:

  • Code formatting (use Prettier, Black, etc.)
  • Import organization
  • Linting violations
  • Simple typos

Review Process

Phase 1: Context Gathering (2-3 minutes)

Read the full file on GitHub · 530 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. 9d ago First seen · 530 lines · 42 tokens per session scan A 014fff1c8db7

Subscribe to this mod's changes

code-review-excellence is a skill published in the GitHub repository crafter-station/petdex (4,052 stars, last pushed yesterday), licensed MIT. It adds 42 tokens to every session and 3,091 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to code-review-excellence, differing in 0 lines, and is treated as a copy.