Structured Code Review

VerifiedSafe

Performs structured code reviews on staged changes, pull requests, or commit ranges. Evaluates code quality, domain rule adherence, security, test coverage, and architectural alignment. Helps catch issues early in the development workflow.

Sby Skills Guide Bot
DevelopmentIntermediate
1006/2/2026
Claude Code
#code-review#code-quality#security#test-coverage#architecture

Recommended for

Our review

Performs a structured code review of staged changes, a specific PR, or a range of commits, evaluating code quality, security, test coverage, and architecture.

Strengths

  • Systematic analysis covering multiple dimensions (quality, security, tests)
  • Adaptable to uncommitted changes or an entire PR
  • Enforces project conventions and detects secret leaks

Limitations

  • Requires the project to be cloned and dependencies available
  • Can be token-intensive for large PRs
  • Understanding of domain rules depends on project documentation
When to use it

Use this skill before merging a PR, to validate local changes, or as a quality assurance step in your pipeline.

When not to use it

Do not use it for non-versioned code or files unrelated to the current repository.

Security analysis

Safe
Quality score85/100

The skill describes a code review workflow that only involves scanning files and reporting results; it does not instruct any command execution, data exfiltration, or safety bypass.

No concerns found

Examples

Review staged changes
review the staged changes in this repository, checking for code quality, security issues, and test coverage.
Review a pull request by URL
review the pull request at https://github.com/org/repo/pull/42 and provide a structured feedback on architecture and conventions.
Review a range of commits
review commits between HEAD~3 and HEAD, focusing on adherence to domain rules and backward compatibility.

name: 'review' description: 'Performs a structured code review of staged changes, a specific PR, or a range of commits. Evaluates code quality, adherence to domain rules, security concerns, test coverage, and architectural alignment.' generated_by: 'agentkit-forge' last_model: 'sync-engine' last_updated: '2026-03-01'

Format: YAML frontmatter + Markdown body. Claude skill definition.

Docs: https://docs.anthropic.com/en/docs/claude-code/memory


<!-- GENERATED by AgentKit Forge v0.2.2 — DO NOT EDIT --> <!-- Source: .agentkit/spec + .agentkit/overlays/chaufher --> <!-- Regenerate: pnpm -C .agentkit agentkit:sync -->

review

Performs a structured code review of staged changes, a specific PR, or a range of commits. Evaluates code quality, adherence to domain rules, security concerns, test coverage, and architectural alignment.

Usage

Invoke this skill when you need to perform the review operation.

Instructions

  1. Parse any arguments provided
  2. Scan relevant files to understand the current state
  3. Execute the task following project conventions
  4. Validate the output against quality gates
  5. Report results clearly

Project Context

  • Repository: chaufher
  • Default branch: main
  • Tech stack: typescript, csharp

Conventions

  • Write minimal, focused changes
  • Maintain backwards compatibility
  • Include tests for behavioral changes
  • Never expose secrets or credentials
  • Follow the project's established patterns
Related skills