# Censseo Specforge Code Review

> Code Review Excellence

- Skill: `tomevault-io/censseo-specforge-code-review` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/censseo-specforge-code-review`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/censseo-specforge-code-review/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/censseo-specforge-code-review

---


# Code Review Excellence

> Systematic code review for quality, security, and maintainability.

## Review Checklist

### 1. Correctness
- [ ] Logic is correct and handles edge cases
- [ ] Error handling is appropriate
- [ ] No off-by-one errors or boundary issues

### 2. Security
- [ ] No hardcoded secrets or credentials
- [ ] Input is validated and sanitized
- [ ] No SQL injection or XSS vulnerabilities
- [ ] Auth/authz checks are in place

### 3. Performance
- [ ] No N+1 queries or unnecessary loops
- [ ] Resources are properly released
- [ ] No blocking operations in hot paths

### 4. Maintainability
- [ ] Code is readable and self-documenting
- [ ] Functions are single-purpose and small
- [ ] No code duplication
- [ ] Naming is clear and consistent

### 5. Testing
- [ ] Tests exist for new functionality
- [ ] Edge cases are tested
- [ ] Tests are meaningful, not just coverage

## Quick Reference

| Aspect | Look For |
|--------|----------|
| **Functions** | < 30 lines, single responsibility |
| **Parameters** | < 4 params, use objects for more |
| **Nesting** | < 3 levels deep |
| **Comments** | Explain "why", not "what" |

## Critical Don'ts

- Don't approve code with security vulnerabilities
- Don't skip reviewing test code
- Don't approve without understanding the change
- Don't nitpick style if linters handle it

## References

- For detailed checklist: Read references/review-checklist.md
- For security patterns: Read references/security-review.md

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/censseo) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-14 -->

