Nexus-agents reviewing-code

install
source · Clone the upstream repo
git clone https://github.com/williamzujkowski/nexus-agents
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/williamzujkowski/nexus-agents "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/reviewing-code" ~/.claude/skills/williamzujkowski-nexus-agents-reviewing-code && rm -rf "$T"
manifest: skills/reviewing-code/SKILL.md
source content

Code Review Skill

<!-- CANONICAL SOURCES: - CODING_STANDARDS.md - docs/architecture/SECURITY.md -->

Full documentation:

Review Checklist

Structural (Section 3)

CriterionLimit
File≤ 400 lines
Function≤ 50 lines
Nesting≤ 4 levels

Type Safety (Section 4)

  • No
    any
    types
  • Result<T, E>
    for fallible ops
  • Zod at boundaries

Security (Section 7)

  • No secrets in code/logs
  • Path traversal prevention
  • No user-provided RegExp

See SECURITY.md for full threat model.

Review Process

# 1. Run quality gates
pnpm lint && pnpm typecheck && pnpm test

# 2. Check coverage
pnpm test:coverage

Review Output

## Code Review: [File/PR]

### Critical (Must Fix)

- [ ] Issue at `file:line`

### Major (Should Fix)

- [ ] Issue

### Recommendation

[ ] APPROVE / [ ] REQUEST_CHANGES

See CODING_STANDARDS.md for common issues and patterns.