Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/goulinkh/code-review-harness/llms.txt

Use this file to discover all available pages before exploring further.

Code Review Harness ships as a single bundled npm package, code-review-harness, and installs the crh and code-review-harness binary names. You can install it globally from npm or build it directly from source.

Requirements

  • Node.js 20 or later

Install from npm

npm install -g code-review-harness
Both commands install the same package and register two binary aliases: crh (short form) and code-review-harness (full form). Either works for every command in the docs.

Verify the installation

crh --version
You should see the installed version number. If the command is not found, check that your global npm bin directory is on your PATH.

Build from source

If you want to run unreleased changes or contribute to CRH, build the CLI from the repository.
Building from source requires pnpm — it is the required package manager for this monorepo (packageManager: pnpm@10.0.0). npm and yarn are not supported for source builds.
Clone the repository and install dependencies:
pnpm install
Build all packages in dependency order:
pnpm -r build
Run the CLI directly from the build output:
node apps/cli/dist/index.js --help
After a source build you can also link the binary globally with pnpm link --global from the apps/cli directory, which lets you use crh in your terminal without the node apps/cli/dist/index.js prefix.

Build docs developers (and LLMs) love