Use when code changes need review before merge - validates architecture, types, security, and test coverage.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add aibot88/sec_skill_store --skill review-review --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Review Review?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/aibot88-review-review)More formats (shields.io, HTML) on the badges page.
---
name: review-review
description: "Use when code changes need review before merge - validates architecture, types, security, and test coverage."
user-invocable: true
argument-hint: "[scope]"
allowed-tools: Read, Bash, Glob, Grep
---
Perform a full code review of changed files, validating against `docs/ARCHITECTURE.md`.
Scope: $ARGUMENTS (if empty, review files changed in git)
## Steps
1. Identify changed files:
```bash
git diff --name-only HEAD~1 2>/dev/null || git diff --name-only --cached 2>/dev/null || echo "Please specify the files"
```
2. Run automated checks:
```bash
npx tsc --noEmit
ng lint
ng test --watch=false
```
3. Check ARCHITECTURE.md patterns:
- Services: HttpClient only, no try/catch, no transformation, inject(HttpClient)
- Adapters: pure functions
- Stores: signal-based, private WritableSignal, public asReadonly()
- Components: standalone, input()/output() signals, OnPush, < 200 lines
- Naming: kebab-case files, PascalCase classes
- Boundaries: no cross-module imports
- DI: inject() everywhere, no constructor DI
4. Classify:
- VIOLATION - breaks ARCHITECTURE.md
- ATTENTION - recommended improvement
- COMPLIANT - correct
- HIGHLIGHT - positive highlight
5. Produce report with verdict: Approved | With caveats | Requires changes
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment is one line: location, problem, fix. Use when user says "review this PR", "code review", "review the diff", "/review", or invokes /caveman-review. Auto-triggers when reviewing pull requests.
Ultra-compressed commit message generator. Cuts noise from commit messages while preserving intent and reasoning. Conventional Commits format. Subject ≤50 chars, body only when "why" isn't obvious. Use when user says "write a commit", "commit message", "generate commit", "/commit", or invokes /caveman-commit. Auto-triggers when staging changes.
一个全面的 Claude Code 会话验证系统。
Verification loop for Spring Boot projects: build, static analysis, tests with coverage, security scans, and diff review before release or PR.
Verification loop for Django projects: migrations, linting, tests with coverage, security scans, and deployment readiness checks before release or PR.