Best for
- Use when the user says "review code", "check my code", "code review", "review PR", "review staged changes", "review these commits", or "is this code okay".
NintendaDev/unikit-ai/skills/unikit-review/SKILL.md
Perform a code review on {{engine_name}} {{engine_code_language}} code. Checks for bugs, security issues, performance problems, and best practices against the project's coding rules, design principles, and framework-specific conventions. Supports four modes — staged changes, a pull request, a commit range, or individual files. Use when the user says "review code", "check my code", "code review", "review PR", "review staged changes", "review these commits", or "is this code okay". Optional +check
Decision brief
Analyze {{enginecodelanguage}} code against the project's coding rules and produce a structured review report.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/NintendaDev/unikit-ai --skill "skills/unikit-review"Inspect the Agent Skill "unikit-review" from https://github.com/NintendaDev/unikit-ai/blob/b6fd42c24aaadd46e91c6c94da9cc0078b5ecb8c/skills/unikit-review/SKILL.md at commit b6fd42c24aaadd46e91c6c94da9cc0078b5ecb8c. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
Read (they always apply): - .unikit/ARCHITECTURE.md — module boundaries, dependency rules - .unikit/ROADMAP.md (if present) — milestone alignment - .unikit/system/gate-result-contract.md — schema for the machine-readable unikit-gate-result block emitted in Step 5. If missing or…
Parse +check first. If $ARGUMENTS contains the +check token, strip it out (remember check = true) before running the routing chain below, so it is never mistaken for a file path or git ref. +check enables the fresh-context findings validator in Step 4.5; without it, that step is…
Now that target code is available, scan it for framework markers from the Stack section of RULESINDEX.md. Each entry lists which keywords/types indicate relevance ("Load When" column). Load only matching rule files. If no markers match — skip stack rules entirely.
Apply all loaded rules (core + stack + project + ARCHITECTURE.md) uniformly, regardless of mode.
Run this step only when check = true (the +check flag was parsed in Step 2). Draft the full review internally first (all sections of Step 5, including the gate-result inputs), then — before rendering anything to the user — run the procedure in references/CHECK-MODE.md. It dispat…
Permission review
The documentation asks the agent to read local files, directories, or repositories.
**Core**: read the Core table. For EACH row where Required By = `all` or contains `{{self_name}}` — read that file from `.unikit/memory/code/core/` using the Read tool. Do NOT skip any matching row. Always re-read at skill start, never relyEvidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 92/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 16 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Analyze {{engine_code_language}} code against the project's coding rules and produce a structured review report.
BEFORE producing ANY output, silently read .unikit/system/LANGUAGE_RULES.md
and apply its rules to ALL subsequent output.
If the file is missing or unreadable, fall back to English.
Do not produce any user-facing output until language rules are loaded.
Do not announce, confirm, or mention the language setting.
When the workflow reaches a step that requires a subagent (Agent), the assistant MUST automatically spawn the
subagent if agent execution is supported by the current environment and not prohibited by higher-priority
instructions.
Only if agent execution is unavailable or blocked, the assistant MUST ask the user before proceeding with any alternative.
+checkcarve-out: the optional+checkfindings validator (Step 4.5) is exempt from the rule above. If its validator agent is unavailable or blocked, render the review as drafted and emit a singleWARN [+check]line — never ask the user. Seereferences/CHECK-MODE.md.
Read (they always apply):
.unikit/ARCHITECTURE.md — module boundaries, dependency rules.unikit/ROADMAP.md (if present) — milestone alignment.unikit/system/gate-result-contract.md — schema for the machine-readable unikit-gate-result block emitted in Step 5. If missing or unreadable, do not block: the Step 5 gate-result section is self-sufficient on the schema and degrades gracefully (see there).Read .unikit/memory/code/RULES_INDEX.md. Load rules:
.unikit/RULES.md first (highest priority)all or contains {{self_name}} — read that file from .unikit/memory/code/core/ using the Read tool. Do NOT skip any matching row. Always re-read at skill start, never rely on prior conversation cacheRead .unikit/skill-context/{{self_name}}/SKILL.md if it exists — project-level overrides that win over this SKILL.md when conflicting.
Parse +check first. If $ARGUMENTS contains the +check token, strip it out (remember check = true) before running the routing chain below, so it is never mistaken for a file path or git ref. +check enables the fresh-context findings validator in Step 4.5; without it, that step is skipped entirely.
#N / PR URL (e.g. 123, #42, https://github.com/.../pull/123) → PR mode. Extract number from URL if needed@ → File mode (folder). Strip @, glob <path>/**/*.cs.cs → File mode (explicit files)git rev-parse --verify <arg>:
AskUserQuestion (staged / cancel / corrected ref)
@disambiguates folder paths from git refs with/.
git diff --cached → if empty, git diff → if empty, inform and stop.cs files, read full content for stack rule detectiongh pr view <N> --json title,body,baseRefName,headRefName,filesgh pr diff <N>.cs files, read full content for stack rule detectiongit rev-parse --verify. Invalid → ask usergit log --oneline --reverse <ref>..HEAD → if empty, inform and stopAskUserQuestion (all / last 20 / cancel)git diff --name-only <ref>..HEAD -- '*.cs' → read full content for stack rule detectiongit show <hash> --stat and git show <hash>.cs args: locate via Glob/find. Name without path → search entire project@folder args: Glob <folder>/**/*.cs. No results → report error, continue with othersNow that target code is available, scan it for framework markers from the Stack section of RULES_INDEX.md. Each entry lists which keywords/types indicate relevance ("Load When" column). Load only matching rule files. If no markers match — skip stack rules entirely.
Apply all loaded rules (core + stack + project + ARCHITECTURE.md) uniformly, regardless of mode.
For each file or diff hunk, check:
Modules/ → Game/ forbidden)feat/fix/perf work, missing ROADMAP.md milestone link (suggestion only)Commits mode only — additionally per commit:
Record exact line numbers (or commit hash + file:line for diff modes) and relevant code snippets.
Always run these checks in addition to project rules. If a finding from the checklist contradicts a loaded project/core/stack rule or ARCHITECTURE.md (i.e. the code follows project conventions) — suppress the finding, it is not an issue.
Correctness:
Performance:
Best Practices:
Testing:
+check only)Run this step only when check = true (the +check flag was parsed in Step 2). Draft the full review internally first (all sections of Step 5, including the gate-result inputs), then — before rendering anything to the user — run the procedure in references/CHECK-MODE.md. It dispatches one fresh-context Agent(subagent_type: Explore, model: sonnet) validator over the Findings table rows (one item per row; "Questions", "Positive notes", and per-commit findings are excluded), applies each keep/modify/drop verdict and any severity move across the four levels (🔴 Critical / 🟡 Warning / 🟠 Medium / 🟢 Suggestion), tracks the hidden / adjusted / reclassified counters, and recomputes the unikit-gate-result block (Step 5 "Machine-readable gate result") from the post-filter table.
When +check ran successfully, append one line after all review sections and before the unikit-gate-result fence:
Filtered: N hidden, M adjusted, K reclassified by +check
Fallback (do NOT inline-analyze): if the validator agent is unavailable/blocked or the dispatch fails, keep all findings as drafted, do NOT recompute the gate-result block (assemble it from the unfiltered table), and emit the single line WARN [+check]: validator failed (<reason>), all items kept as-is above the fence — never re-do the validator's work with Glob/Grep/Read. This +check path is exempt from the Subagent-Delegation prerequisite (see the carve-out note above) — an unavailable validator is silently skipped, the user is never asked.
If +check is not set, skip this step entirely — no validator-related lines appear and the gate-result block is computed once from the full draft.
All modes use the same report structure. Mode-specific sections are marked below.
## Code Review Summary
<!-- PR mode only: -->
**PR:** #[number] — [title]
**Base:** [baseRefName] ← **Head:** [headRefName]
<!-- Commits mode only: -->
**Range:** `<ref>..HEAD`
**Commits Reviewed:** [count]
**Files Reviewed:** [count]
**Risk Level:** 🟢 Low / 🟡 Medium / 🔴 High
**Stack rules loaded:** [list or "none"]
<!-- Commits mode only: -->
### Per-Commit Notes
#### `<short-hash>` — <commit message>
- **Atomicity:** ✅ Good / ⚠️ Mixed concerns
- **Message accuracy:** ✅ Matches / ⚠️ Misleading
- **Issues:** [findings with severity markers, or "None"]
### Findings
| # | Severity | Location | Rule | Issue | Fix |
|---|----------|----------|------|-------|-----|
| 1 | 🔴/🟡/🟠/🟢 | file:L42 | Rule ref | What's wrong | How to fix |
### Code Fixes
<!-- For 🔴 and 🟡 findings, show: -->
**#1 — [issue title]** (`file:L42`)
```csharp
// ❌ Current
<problematic code>
// ✅ Fixed
<corrected code>
```
### Questions
[Ambiguous code or design decisions that need clarification from the author]
### Summary
- **Critical:** [count] | **Warning:** [count] | **Medium:** [count] | **Suggestion:** [count]
- **Top issues:** 3 most impactful to fix first
- **Positive notes:** Good patterns observed
Mirror of
unikit-verifyStep 4.4 (the canonical template). This section copies that one field-for-field — the only differences are"gate": "review"and the projection source (the Findings table below, instead of verify's task-audit + context gates). The graceful-degradation wording and the last-fence rule are kept textually identical to verify's so a single guard locks both; if verify's wording changes, this must change in lockstep.
After the human-readable review above, append exactly one fenced unikit-gate-result JSON block. Use the schema loaded from .unikit/system/gate-result-contract.md in Step 1.
Last fence wins: the unikit-gate-result block MUST be the LAST fenced block in this skill's output — orchestrators parse only the last one. Any earlier fence (the example below, quoted prior output) is illustrative and is not the gate result.
Projection (review): derive the fields from the Findings table:
"gate": always "review"."status":
fail — the table has at least one blocking finding (🔴 Critical or 🟡 Warning).warn — no blocking findings, but the table has 🟠 Medium / 🟢 Suggestion rows.pass — the table is empty (no findings)."blocking": true only when status is fail."blockers": include only the 🔴 Critical and 🟡 Warning rows, each { "id", "severity", "file", "summary" }. Use stable ids (review-finding-<row#>). severity is error for these blocking rows (warning only when policy escalates). 🟠 Medium / 🟢 Suggestion rows stay in the human table, never in blockers."affected_files": the files the review actually evaluated or cited (not unrelated repo files); empty array when none apply."suggested_next.command": from the allowlist in gate-result-contract.md — /unikit-fix (code must change), /unikit-rules (a rules-gate finding needs a writer update), /unikit-architecture (architecture drift), /unikit-roadmap (roadmap drift), /unikit-commit (clean — natural next step), or null.When +check ran (Step 4.5), this projection runs over the post-filter table and suggested_next.reason notes the +check counters; on +check whole-dispatch failure the block is assembled from the unfiltered table and is not recomputed.
{
"schema_version": 1,
"gate": "review",
"status": "pass",
"blocking": false,
"blockers": [],
"affected_files": [],
"suggested_next": {
"command": "/unikit-commit",
"reason": "Review found no blocking issues."
}
}
The fenced block contains JSON only — no comments, trailing commas, or prose inside it.
Graceful degradation: if .unikit/system/gate-result-contract.md is missing or unreadable, do not hard-fail — emit the block from the inline schema in this section; if even that is not possible, skip the block and append the single line WARN [gate-result]: contract asset unavailable.
/unikit-review — review staged changes
/unikit-review PlayerController.cs — review specific file
/unikit-review @Assets/Scripts/Player — review folder recursively
/unikit-review @Assets/Scripts/Player @Assets/Modules/Wallets — review multiple folders
/unikit-review 123 or /unikit-review #42 — review PR by number
/unikit-review https://github.com/org/repo/pull/123 — review PR by URL
/unikit-review master — review commits vs master
/unikit-review v1.0.0 — review commits vs tag
/unikit-review feature/day-loop — review commits vs branch
Tip: Context is heavy after review. Consider
/clearor/compactbefore continuing.
Frequently asked questions
Analyze {{enginecodelanguage}} code against the project's coding rules and produce a structured review report.
The source record exposes this install command: npx skills add https://github.com/NintendaDev/unikit-ai --skill "skills/unikit-review". Inspect the command and pinned source before running it.
Static rules flagged read-files in the source; the page lists the matching lines and excerpts.
Alternatives
magnus919/agent-skills
Use this skill to reverse-engineer an existing software system, map its architecture, data flow, privacy posture, coupling, quality characteristics, and feature surface, then produce an evidence-grounded clean-room design document, PRD, or migration plan under new constraints. Use for codebase archaeology, implicit contract extraction, architecture health assessment, or decomposition-readiness analysis. Do not use for greenfield architecture design, direct code review, bug hunting, security audi
th3vib3coder/vibe-science
Scientific research engine for hypothesis testing, literature gap analysis, experimental validation, and data-driven discovery. Enforces adversarial review (Reviewer 2), 32 quality gates, tree search over hypotheses, confounder harness for quantitative claims, and serendipity detection. TRIGGER when: user asks to analyze scientific data, test hypotheses, validate findings, search for research gaps, design experiments, or investigate results. DO NOT TRIGGER when: pure code review, documentation w
mblode/agent-skills
Reviews the local diff or branch and returns a read-only, severity-tiered findings report. Modes cover standard bugs, structural quality, AI slop, and security audit. Use when asked to run /pr-reviewer, "review my changes", "code review", "thermo-nuclear review", "structural review", "deslop this", "clean up AI code", "security audit", "find vulnerabilities", or before commit, push, or handoff. For fixes use tidy; for PR creation use pr-creator; for CI or review comments use pr-babysitter; for f
alirezarezvani/claude-skills
Terraform infrastructure-as-code agent skill and plugin for Claude Code, Codex, Gemini CLI, Cursor, OpenClaw. Covers module design patterns, state management strategies, provider configuration, security hardening, policy-as-code with Sentinel/OPA, and CI/CD plan/apply workflows. Use when: user wants to design Terraform modules, manage state backends, review Terraform security, implement multi-region deployments, or follow IaC best practices.