Code review
Agent Skills 오픈 표준 기반 AI 코딩 에이전트용 스킬 컬렉션 (Java, Kotlin, Spring, NestJS, K8s, Terraform, GraphQL, gRPC, OpenTelemetry, a11y, i18n 등 60개)
npx -y skills add iceflower/agent-skills --skill code-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Code review checklist, comment guidelines, and PR review best practices. Covers PR review workflows, code suggestions, nitpick vs blocking review classification, LGTM criteria, review checklist (correctness, security, performance, readability), and constructive feedback patterns. Use when reviewing pull requests, providing code suggestions, or establishing a team code review process and review comment conventions.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.5 KB, 863 tokens by cl100k_base, as published. Nobody here has run it
Code Review Rules
1. Review Checklist
Correctness
- Does the code do what it claims to do?
- Are edge cases handled (null, empty, boundary values)?
- Are error paths handled properly?
- Is the logic correct for concurrent/async scenarios?
Security
- Is user input validated and sanitized?
- Are sensitive data (passwords, tokens) excluded from logs and responses?
- Are authorization checks in place?
- Are SQL queries parameterized (no string concatenation)?
Performance
- Are there N+1 query problems?
- Are large collections paginated?
- Are expensive operations cached where appropriate?
- Are database indexes considered for new query patterns?
Readability
- Are names descriptive and consistent with existing conventions?
- Is the code self-explanatory without excessive comments?
- Is nesting depth reasonable (3 levels max)?
- Are magic numbers replaced with named constants?
Testability
- Is the change covered by tests?
- Are tests testing behavior, not implementation?
- Are new edge cases included in tests?
- Can dependencies be easily replaced in tests?
2. Review Priorities
Must Fix (block merge)
- Bugs or incorrect logic
- Security vulnerabilities
- Data loss risk
- Breaking API contract changes without versioning
- Missing error handling for critical paths
Should Fix (strongly recommend)
- N+1 queries or obvious performance issues
- Missing input validation
- Duplicate code that should be extracted
- Missing tests for complex logic
Nice to Have (optional, suggest)
- Minor naming improvements
- Code style preferences
- Additional documentation
- Alternative implementation approaches
3. Review Comment Style
Good Comments
// Specific, actionable, with context
"This query will cause N+1 when users have orders.
Consider using @EntityGraph or JOIN FETCH."
// Suggest, don't demand
"Consider using `sealed class` here — it would make
the when-expression exhaustive and catch missing cases at compile time."
// Ask questions to understand intent
"Is this intentional? If the token is expired, this returns null
instead of throwing — which means the caller needs to handle null."
Bad Comments
// Vague
"This doesn't look right."
// Nitpicking without value
"Add a blank line here."
// Prescriptive without rationale
"Use a different pattern."
4. Review Scope
What to Review
- Business logic changes
- API contract changes (request/response, status codes)
- Database schema changes (migrations)
- Security-related code (auth, validation, data handling)
- Configuration changes (application.yml, build files)
What to Skip
- Auto-generated code (unless the generator config changed)
- Dependency lock files (verify dependency changes only)
- IDE configuration files
- Formatting-only changes (should be handled by linter)
5. Self-Review Before Requesting Review
Pre-PR Checklist
- Diff reviewed — no debug code, no commented-out code
- Tests pass locally
- No unintended file changes
- Commit messages follow convention
- PR description explains what and why
- Breaking changes documented
6. Anti-Patterns
- Rubber Stamping: Approving code without thorough review. Always read and understand all changes before approving
- Nitpicking: Over-focusing on minor style issues while missing core logic flaws. Delegate linter-fixable issues to automation
- Delayed Reviews: Leaving PRs unreviewed causes context loss and merge conflicts. Review within 24 hours
- Oversized PRs: Too many changes in one PR degrades review quality. Keep PRs under 400 lines
- Emotional Feedback: Use constructive suggestions like "Changing X to Y would improve Z" instead of accusatory questions
7. Related Skills
code-quality: Code quality principles and refactoring techniquesgit-workflow: Git commit conventions and branch strategiestesting: Test code review perspectivessecurity: Security vulnerability review checklist
Gives 0 of the 12 instructions most code review skills give in 863 tokens
Counted across 610 of the 674 authors here whose files we hold, read 2026-08-06
- push back with technical reasoning if wrongin 60 of 610, across 24 files
- ask for clarification on unclear itemsin 51 of 610, across 16 files
- fix critical issues immediatelyin 45 of 610, across 29 files
- implement one item at a timein 45 of 610, across 11 files
- group findings by severityin 44 of 610, across 43 files
- verify feedback against the codebasein 42 of 610, across 8 files
- dispatch a code reviewer subagentin 39 of 610, across 23 files
- fix important issues before proceedingin 37 of 610, across 22 files
- test each fix individuallyin 35 of 610, across 7 files
- reply in github comment threadsin 33 of 610, across 5 files
- check for security vulnerabilitiesin 31 of 610, across 27 files
- factualize corrections without over-explainingin 30 of 610, across 2 files
Said here and by no other author read
- test behavior not implementation
- block merges for bugs or security vulnerabilities
- skip auto-generated code and lock files
- pass tests locally before requesting review
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.