review-spd

review-spd is a skill for Claude Code, Codex from zhu1090093659/deepseek-pp. It costs 72 tokens per session (1,548 once invoked), scanned A, original, Apache-2.0.

A code-review workflow for AI coding agents that starts with findings instead of a general summary.

In plain words
What is it for?
It is for reviewing uncommitted changes, a range of commits, or a branch compared with the main branch or a pull request.
Why use it?
It focuses attention on bugs, regressions, correctness risks, security and data-safety problems, and missing tests in changed code.

Skill for Claude CodeCodex

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

Good fit It is for reviewing uncommitted changes, a range of commits, or a branch compared with the main branch or a pull request.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zhu1090093659/deepseek-pp/review-spd
About the project

DeepSeek++ is a browser extension that turns the DeepSeek website into an AI workspace with tools, memory, skills, media analysis, and automation. DeepSeek users employ it to manage projects, control browser pages, search the web, reuse context, and export conversations, while the catalogue entries add skills and instructions for that workspace.

zhu1090093659/deepseek-pp · 1,848 stars · on GitHub · chromewebstore.google.com

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 zhu1090093659/deepseek-pp --skill review-spd
Clone the repo
git clone --depth 1 https://github.com/zhu1090093659/deepseek-pp

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-spd

README.md
[![agentmods](https://agentmods.dev/badge/skills/zhu1090093659/deepseek-pp/review-spd/github.svg)](https://agentmods.dev/skills/zhu1090093659/deepseek-pp/review-spd)
Your own site
<a href="https://agentmods.dev/skills/zhu1090093659/deepseek-pp/review-spd"><img src="https://agentmods.dev/badge/skills/zhu1090093659/deepseek-pp/review-spd/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-spd

Your own site · 80×15
<a href="https://agentmods.dev/skills/zhu1090093659/deepseek-pp/review-spd"><img src="https://agentmods.dev/badge/skills/zhu1090093659/deepseek-pp/review-spd.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,548 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.00072 $0.01548
Opus 5 $0.00036 $0.00774
Sonnet 5 $0.00014 $0.00310
Haiku 4.5 $0.00007 $0.00155

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

Security

Grade A, and why

review-spd 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 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/review-context.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

core/skill/spec-driven-develop-official/review-spd/SKILL.md · 140 lines

How it starts

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

Review SPD

You are executing the Review SPD workflow: a findings-first code review process for changed code. Your primary goal is to identify bugs, regressions, and behavior risks introduced by the changes. Do not turn this into a style review or a broad summary.

Configuration

Item Default Purpose
Context script scripts/review-context.py relative to this Review SPD skill directory Collect stable git context for review targets
Default target Uncommitted changes Review working tree and staged changes by default
Commit range default Last 3 days Used only when the user explicitly requests commit/date review without dates
PR base Auto-detect origin/main, origin/master, then remote default branch Base for branch-vs-main review
Output style Findings first Findings ordered by severity before summaries or notes

References:

  • Reviewer sub-agent template: references/reviewer-template.md
  • Final output format: references/output-format.md

Target Modes

The workflow supports three mutually exclusive review targets:

  1. Uncommitted mode: Review current uncommitted changes. This is the default.
  2. Commit-range mode: Review commits in a date range. If the user explicitly asks for commit/date review but gives no range, use the last 3 days.
  3. Branch / PR mode: Review a branch compared with the main branch or an explicit base branch.

Resolve target conflicts with this priority:

  1. If branch is specified, use branch / PR mode.
  2. Else if since or until is specified, use commit-range mode.
  3. Else use uncommitted mode.

base only applies to branch / PR mode.

Phase 1: Target Resolution

Extract the review target from the user's request.

Examples:

Resolve the context script from the installed Review SPD skill directory, not from the repository being reviewed. Use the packaged script path in commands, for example:

python <review-spd-skill-dir>/scripts/review-context.py
python <review-spd-skill-dir>/scripts/review-context.py --since "3 days ago"
python <review-spd-skill-dir>/scripts/review-context.py --since 2026-06-28 --until 2026-07-01
python <review-spd-skill-dir>/scripts/review-context.py --branch feature/foo
python <review-spd-skill-dir>/scripts/review-context.py --branch feature/foo --base origin/main

Read the full file on GitHub · 140 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 12d ago First seen · 140 lines · 72 tokens per session scan A a317246dd0f3

Subscribe to this mod's changes

review-spd is a skill published in the GitHub repository zhu1090093659/deepseek-pp (1,848 stars, last pushed 29d ago), licensed Apache-2.0. It adds 72 tokens to every session and 1,548 once invoked, about $0.0004 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

design-is

Audit a design against Dieter Rams' ten "Good design is..." principles, then hand off a /make-plan prompt for one of three outcomes — new design, refine design, or redesign. Use when the user says "audit this design", "design review", "check this UI against Rams", "is this UI good", "critique this design", "design…

thedotmack/claude-mem · 91 tokens

babysit

Watch a pull request or review cycle until it is ready to merge. Use when asked to babysit, monitor, or keep checking PR comments, reviews, and CI until all actionable issues are resolved.

thedotmack/claude-mem · 44 tokens

pr-comment-evaluator

Use to judge whether a PR review comment sounds polite.

topoteretes/cognee · 11 tokens

diff-risk-explainer

Use to briefly explain small code diffs.

topoteretes/cognee · 9 tokens

gh-pr-review

Automated Cherry Studio review for local branches, PRs, commits, files, architecture docs, and repository skills. Use for code or documentation reviews that need project-specific naming, main/renderer/shared placement and dependency rules, IpcApi and DataApi boundaries, lifecycle/service ownership, renderer hooks…

CherryHQ/cherry-studio · 147 tokens

code-audit

Use when the user says '/code-audit', 'audit this code', 'check code quality', 'find duplication', 'find dead code', 'code cleanup', 'technical debt audit', 'code review module', or wants a structured noetic investigation of code quality. This skill runs external analysis tools and structured manual review, producing…

EmpiricaAI/empirica · 91 tokens