Tessl Code Review in one plugin. Install it on a GitHub repository with the Tessl Review GitHub App, run the default review lenses from the CLI, tune what a review catches by authoring your own lens, and answer a review's findings. Start with the code-review skill, which routes to the right one.
94
90%
Does it follow best practices?
Impact
95%
1.10xAverage score across 19 eval scenarios
Low
Low-risk findings worth noting
Review what the change costs as load, data volume, and concurrency grow, and what it does when something it depends on fails.
Prioritize work on request paths, fan-out operations, and batch processing.
Derive failure cases from the operations the change performs, including external calls, writes, and retries. Check behavior for delayed, duplicate, and missing responses.
What counts as adequate failure coverage or a safe rollout is often a written project rule rather than a judgment call. Read the AGENTS.md or CLAUDE.md chain governing the changed files, from the repository root down.
Report costs that grow materially with expected workload, or failures that can affect work beyond the original request or operation.
Do not report cold-path inefficiencies or scenarios that depend on several unlikely failures occurring together.