sks-pr-review

sks-pr-review is a skill for Claude Code, Codex from shikanime-labs/skills. It costs 29 tokens per session (1,178 once invoked), scanned A, original, Apache-2.0.

A reporting workflow for reviewing code changes in Shikanime repositories and pull requests. It checks whether changes are needed, reuse existing code, address root causes, and follow project conventions.

In plain words
What is it for?
Use it to review a local diff or pull request before pushing or merging, with optional checks from tools such as tests, linters, and type checkers.
Why use it?
It helps identify unnecessary or risky changes before approval without changing, committing, or merging the code.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to review a local diff or pull request before pushing or merging, with optional checks from tools such as tests, linters, and type checkers.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shikanime-labs/skills/sks-pr-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 shikanime-labs/skills --skill sks-pr-review
Clone the repo
git clone --depth 1 https://github.com/shikanime-labs/skills

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 sks-pr-review

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/shikanime-labs/skills/sks-pr-review"><img src="https://agentmods.dev/badge/skills/shikanime-labs/skills/sks-pr-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,178 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.00029 $0.01178
Opus 5 $0.00015 $0.00589
Sonnet 5 $0.00006 $0.00236
Haiku 4.5 $0.00003 $0.00118

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

Security

Grade A, and why

sks-pr-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 3d 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/shikanime-studio/sks-pr-review/SKILL.md · 126 lines

How it starts

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

PR Review (sks-pr-review)

Review local diffs and GitHub PRs through the ponytail/YAGNI lens (ponytail plugin skills; ponytail-review is the over-engineering-only pass), enforcing shikanime review practice and repo conventions. Reports only — never auto-commit/merge/fix. Uses jj, gh, and standard Hermes tools.

The mechanics below (added-line security scan, independent fail-closed reviewer) are distilled from requesting-code-review and adapted to the shikanime human-gated flow: the agent posts findings and a verdict, a human approves.

When to Use

  • "review this diff", "check before pushing", "review PR #N", "look at this PR"
  • After a task touching 2+ files
  • Before opening/merging a PR in shikanime/*

Prerequisites

  • Inside a jj repo (colocated or jj-native)
  • gh authenticated for PR-level interaction
  • Optional ruff/eslint/tsc/go vet/pytest — skipped silently if absent

Procedure

1 — Scope. Diff + stat. Empty diff → tell user. >15k chars → split by file. Command cheat-sheet: references/commands.md.

2 — High-level (Ponytail ladder). Per change:

  • (1) needed? speculative need → flag deletion, not review polish;
  • (2) already in codebase? reuse before reviewing a re-implementation;
  • (3) root cause not symptom — fix where all callers route through, not in the one path the ticket named;
  • (4) test strategy present and owned by the right unit?

Full ladder: the ponytail skill. Deliberate corner-cuts found here should carry a ponytail: comment (ceiling + upgrade path) — ponytail-debt harvests them.

3 — Security scan (added lines). Run references/security-scan.md. Any match = blocking. Covers hard-coded secrets, shell/SQL injection, eval/exec, unsafe deserialization, path traversal, XSS; plus auth trust-boundary checks (Keycloak/JWKS timeout + client binding, NestJS/Prisma type boundary).

4 — Independent verdict. Self-review checklist + a delegate_task reviewer with only the diff (no shared context, fail-closed on non-JSON): references/review-doctrine.md. passed false on any security/logic finding.

Read the full file on GitHub · 126 lines

Files

What ships with it

7 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. 3d ago Changed · +7 lines cc21d35c2356
  2. 12d ago First seen · 119 lines · 29 tokens per session scan A 03300760397b

Subscribe to this mod's changes

sks-pr-review is a skill published in the GitHub repository shikanime-labs/skills (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 29 tokens to every session and 1,178 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-31.

Related

Other skills, from other repositories

issue

Use when starting a chain from a GitHub issue — turning an issue URL or number into a triaged, planned, dispatched, and reviewed pull request. Classifies the thread (bug → root-cause discipline, feature → plan chain, question → drafted reply), synthesizes a spec from the issue's own acceptance criteria, then runs the…

jeremylongshore/tons-of-skills-marketplace · 115 tokens

swarm-pr-review

Run a graph-guided, tool-augmented PR review using context packing, parallel exploration, mandatory repository-agnostic risk-family coverage with dispatch scaled to diff size and risk, independent reviewer validation, critic challenge, and metrics writeback. Use for deep pull request review with low false-positive…

ZaxbyHub/opencode-swarm · 91 tokens

include-test-files-that-assert-on-behavior-being-changed-in-decl

When delegating a task affected by this skill, include.

ZaxbyHub/opencode-swarm · 29 tokens

review

Use when the user wants code assessed rather than changed — "review PR 88", "is this branch ready to merge?", "look over my changes", "any problems with this diff?", "give me a code review", "what do you think of this PR?", "sanity-check this branch", "ship it?". Applies to a pull request or the current branch when…

The01Geek/prflow · 123 tokens

magpie-pairing-self-review

Run a structured pre-flight self-review on local changes before opening a PR. Reads the diff against a configurable base (default: the merge base of HEAD and the upstream default branch), checks correctness, security, and project conventions, and returns a structured report to the developer. No state changes, no PR…

apache/magpie · 82 tokens

techdebt

Analyze Elixir/Phoenix technical debt — duplicates, refactoring opportunities, credo issues. Use when asked about code quality, cleanup, or what to improve.

oliver-kriska/claude-elixir-phoenix · 36 tokens