Skip to main content
collectionsSource-backedReview first Safety · Privacy ·

Code Quality & Review

A collection that bundles three Claude Code resources for code review: a code-reviewer sub-agent plus the generate-tests and explain commands.

by JSONbored·added 2025-10-02·
HarnessClaude Code
Bundle:3 items
Review first review before installing

Open the source and read safety notes before installing.

Citation facts

Source-backed facts for citing this resource, derived directly from the registry — also available as plain text for AI assistants.

Source URLs
https://code.claude.com/docs/en/sub-agents, https://github.com/JSONbored/awesome-claude/blob/main/content/collections/code-quality-toolkit.mdx
Author
JSONbored
Claim status
unclaimed
Last verified
2025-10-02

Decision playbook

Review trust signals before you adopt

Signals are present but mixed. Use the checklist below to confirm the source and operational safety for your environment.

Required checks are still incomplete. Finish source and safety verification before adopting this resource.

Compare context
Selected

0

Current score

58

Baseline

Delta

No baseline selected

No major trust-signal divergence detected in the current selection.

Source and provenance checks

Complete

Confirm ownership and provenance before trusting install instructions.

  • Source link availableRequired

    Open the canonical repository and verify ownership.

    Done
  • Source provenance statusRequired

    Marked as source-backed.

    Done
  • Metadata reviewed

    Registry metadata indicates a reviewed listing.

    Done

Safety and privacy checks

Required checks missing

Validate risk disclosures before installation or API wiring.

  • Safety notes presentRequired

    No safety notes listed.

    Pending
  • Privacy notes presentRequired

    No privacy notes listed.

    Pending
  • Trust level risk gateRequired

    Trust level does not block evaluation.

    Done

Package and install checks

Needs review

Check package metadata and artifact integrity signals.

  • Install payload available

    Install or copy payload is available for review.

    Done
  • Package verification flag

    No package verification flag provided.

    Pending
  • Checksum metadata

    No checksum provided for downloaded artifact.

    Pending

Compare-driven decision checks

Needs review

Use compare context to validate trade-offs before adoption.

  • Compare tray has multiple entries

    Add at least one more entry to compare trust differences.

    Pending
  • Baseline comparison available

    No baseline peer selected yet.

    Pending
  • Diverging trust signals identified

    No major trust-signal divergence found.

    Pending

Setup at a glance

Copy & paste

Copy-ready — paste the snippet to get started.

15 minutes

Install command

Not provided

Config snippet

Not provided

Copy snippet

Provided

Prerequisites

3 to clear

Platforms

1 listed

Difficulty

0/100

Adoption plan

Balanced adoption plan

Current risk score 44/100. Use staged verification before broader rollout.

Risk 44
Adoption blockers
  • Safety notes are missing.
  • Privacy notes are missing.

Pre-adoption checks

Validate source and review signals before any execution.

  • Confirm source provenanceRequired

    Source URL/provenance metadata is present.

    Done
  • Confirm metadata review state

    Listing has review metadata.

    Done
  • Verify install payload

    Install/config payload exists and can be inspected.

    Done

Security checks

Confirm safety, privacy, and package integrity signals.

  • Review safety notesRequired

    Safety notes missing; review source code paths before execution.

    Pending
  • Review privacy notesRequired

    Privacy notes missing; inspect network/data behavior manually.

    Pending
  • Verify package integrity metadata

    No package verification/checksum metadata.

    Pending

Rollout

Adopt in controlled steps based on the selected plan.

  • Run in isolated sandbox firstRequired

    Use a constrained sandbox and observe behavior across multiple tasks.

    Pending
  • Roll out graduallyRequired

    Roll out to a small cohort before wider usage.

    Pending
  • Set monitoring and fallback

    Define rollback path and monitor errors after adoption.

    Pending

Evidence readiness

Evidence readiness matrix · balanced

Missing required evidence: Safety notes. Risk score 36.

Risk 36

Source provenance

Present

Source repository/provenance is listed.

Required in this preset

Metadata review

Present

Review metadata is present.

Required in this preset

Safety notes

Missing

Safety notes are missing.

Required in this preset

Privacy notes

Missing

Privacy notes are missing.

Optional in this preset

Package integrity

Missing

Package integrity metadata is missing.

Optional in this preset

Install payload

Present

Install payload is available.

Required in this preset

Required gaps: Safety notes

Decision timeline

Decision timeline · balanced

Blocking gaps: Review safety notes. Risk 32.

Risk 32

triage

Confirm source provenanceRequired

Source/provenance metadata is available.

Done

triage

Check metadata review statusRequired

Review metadata is available.

Done

verify

Review safety notesRequired

Safety notes are missing.

Pending

verify

Review privacy notes

Privacy notes are missing.

Pending

verify

Validate package integrity metadata

Package integrity metadata is missing.

Pending

rollout

Verify install payload and commandsRequired

Install payload is available.

Done

Blockers: Review safety notes

Prerequisite readiness

Prerequisite readiness

3 prerequisites to line up before setup. Includes a review or approval gate.

0/3 ready
Review & approval1General215 minutes

Prerequisites

  • Existing codebase to review
  • Understanding of testing frameworks
  • Git repository setup

Schema details

Install type
copy
Reading time
1 min
Difficulty score
0
Troubleshooting
Yes
Breaking changes
No
Skill and platform metadata
Retrieval sources
https://code.claude.com/docs/en/sub-agentshttps://code.claude.com/docs/en/slash-commandshttps://code.claude.com/docs/en/common-workflows
Collection metadata
Items
3 entries
Estimated setup
15 minutes
Difficulty
intermediate
Installation order
code-reviewer-agentgenerate-testsexplain
Full copyable content
Comprehensive suite of tools for maintaining high code quality through automated reviews, testing, and best practice enforcement. Essential for teams focused on code excellence.

## Features

- Automated code review and suggestions
- Test generation and coverage analysis
- Code refactoring assistance
- Best practice enforcement

## Use Cases

- Performing comprehensive code reviews
- Improving test coverage across projects
- Refactoring legacy code safely
- Enforcing team coding standards

## TL;DR

This collection bundles three Claude Code resources for a code review workflow: the `code-reviewer-agent` sub-agent and the `generate-tests` and `explain` slash commands.

- `code-reviewer-agent` reviews code and flags issues
- `generate-tests` creates tests for your code
- `explain` walks through how existing code works

Install the items in the recommended order to review code, add test coverage, and understand unfamiliar code from inside Claude Code.

## Collection Overview

**Collection Type:** Code Quality & Review
**Focus Area:** Code review, test generation, and code explanation
**Skill Level:** Intermediate

## What's Included

## Collection Contents

The three resources bundled in this collection:

- **code-reviewer-agent** (Agent): a Claude Code sub-agent that reviews code and surfaces bugs, risks, and best-practice issues.
- **generate-tests** (Command): a slash command that generates tests for selected code.
- **explain** (Command): a slash command that explains how existing code works.

## Quick Start

Install `code-reviewer-agent` first, then `generate-tests`, then `explain`. Each item is independently useful but they work well together for a review-and-test workflow.

## Prerequisites

- Existing codebase to review
- Understanding of testing frameworks
- Git repository setup

## Recommended Order

1. `code-reviewer-agent`
2. `generate-tests`
3. `explain`

## Troubleshooting

### Code reviewer agent rejects tests generated by generate-tests

Install code-reviewer-agent first to establish quality standards. Then install generate-tests to create tests matching those standards. Configure test generation to follow reviewer's style guide.

### Generate-tests command missing required testing framework

Install testing framework before collection: npm install -D jest @types/jest or npm install -D vitest. Verify test runner in package.json scripts. Reinstall generate-tests after framework setup.

### Explain command output conflicts with reviewer agent's suggestions

Use explain command for understanding existing code, code-reviewer-agent for improvement suggestions. Install both per installationOrder. They serve complementary purposes, not conflicting ones.

### Collection items cannot find codebase root directory

Ensure Git repository initialized in project root: git init. All collection items detect project root via .git directory. Open Claude Code in repository root, not subdirectory.

### Test generation fails due to TypeScript configuration issues

Verify tsconfig.json includes test files in compilation. Add test directory to include array. Install @types packages for testing framework. Restart Claude Code after TypeScript config changes.

About this resource

Comprehensive suite of tools for maintaining high code quality through automated reviews, testing, and best practice enforcement. Essential for teams focused on code excellence.

Features

  • Automated code review and suggestions
  • Test generation and coverage analysis
  • Code refactoring assistance
  • Best practice enforcement

Use Cases

  • Performing comprehensive code reviews
  • Improving test coverage across projects
  • Refactoring legacy code safely
  • Enforcing team coding standards

TL;DR

This collection bundles three Claude Code resources for a code review workflow: the code-reviewer-agent sub-agent and the generate-tests and explain slash commands.

  • code-reviewer-agent reviews code and flags issues
  • generate-tests creates tests for your code
  • explain walks through how existing code works

Install the items in the recommended order to review code, add test coverage, and understand unfamiliar code from inside Claude Code.

Collection Overview

Collection Type: Code Quality & Review Focus Area: Code review, test generation, and code explanation Skill Level: Intermediate

What's Included

Collection Contents

The three resources bundled in this collection:

  • code-reviewer-agent (Agent): a Claude Code sub-agent that reviews code and surfaces bugs, risks, and best-practice issues.
  • generate-tests (Command): a slash command that generates tests for selected code.
  • explain (Command): a slash command that explains how existing code works.

Quick Start

Install code-reviewer-agent first, then generate-tests, then explain. Each item is independently useful but they work well together for a review-and-test workflow.

Prerequisites

  • Existing codebase to review
  • Understanding of testing frameworks
  • Git repository setup

Recommended Order

  1. code-reviewer-agent
  2. generate-tests
  3. explain

Troubleshooting

Code reviewer agent rejects tests generated by generate-tests

Install code-reviewer-agent first to establish quality standards. Then install generate-tests to create tests matching those standards. Configure test generation to follow reviewer's style guide.

Generate-tests command missing required testing framework

Install testing framework before collection: npm install -D jest @types/jest or npm install -D vitest. Verify test runner in package.json scripts. Reinstall generate-tests after framework setup.

Explain command output conflicts with reviewer agent's suggestions

Use explain command for understanding existing code, code-reviewer-agent for improvement suggestions. Install both per installationOrder. They serve complementary purposes, not conflicting ones.

Collection items cannot find codebase root directory

Ensure Git repository initialized in project root: git init. All collection items detect project root via .git directory. Open Claude Code in repository root, not subdirectory.

Test generation fails due to TypeScript configuration issues

Verify tsconfig.json includes test files in compilation. Add test directory to include array. Install @types packages for testing framework. Restart Claude Code after TypeScript config changes.

Source citations

Add this badge to your README

Show that Code Quality & Review is listed on HeyClaude. Paste this Markdown into your README — it renders the badge and links back to this page.

Listed on HeyClaude
[![Listed on HeyClaude](https://heyclau.de/badge/collections/code-quality-toolkit.svg)](https://heyclau.de/entry/collections/code-quality-toolkit)

How it compares

Code Quality & Review side by side with 2 alternatives on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.

Field

A collection that bundles three Claude Code resources for code review: a code-reviewer sub-agent plus the generate-tests and explain commands.

Open dossier

A starter kit for designing, documenting, and testing REST APIs with Claude: bundles an API-builder agent with the docs, generate-tests, and debug commands.

Open dossier

Complete debugging toolkit for identifying, analyzing, and resolving complex software issues. Combines AI-assisted debugging with powerful diagnostic commands.

Open dossier
Next steps
Trust
Review statusReviewedMaintainer reviewedReviewedMaintainer reviewedReviewedMaintainer reviewed
Package trustPackage not verifiedPackage not verifiedPackage not verified
Source provenanceSource-backedSource-backedSource-backed
Submitter
Install riskReview firstReview firstReview first
Notes Safety · Privacy · Safety · Privacy · Safety · Privacy ·
Brand
Categorycollectionscollectionscollections
Sourcesource-backedsource-backedsource-backed
AuthorJSONboredJSONboredJSONbored
Added2025-10-022025-10-022025-10-02
Platforms
Claude Code
Claude Code
Claude Code
Source repo
Safety notes— missing— missing— missing
Privacy notes— missing— missing— missing
Prerequisites
  • Existing codebase to review
  • Understanding of testing frameworks
  • Git repository setup
  • Node.js 18 or higher
  • Basic understanding of REST API concepts
  • Code editor with Claude integration
  • Basic debugging knowledge
  • Access to application logs
  • Development environment setup
Install
Config
Citations
ClaimUnclaimedUnclaimedUnclaimed
Open 3 picks in the interactive comparison tool

Related guides

Signals

Loading live community signals…

More like this, weekly

A short, calm digest of reviewed Claude resources. Unsubscribe any time.