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 for incorrect results in changed logic, persisted data, and integration boundaries.
Challenge each changed calculation, comparison, and branch against valid edge cases and against existing data that may be valid but unusual.
For each write path, trace a record from input to persistence and check the state left by an interrupted run.
At an integration boundary, check compatibility between the independently deployed versions of each side.
Some contracts are written down rather than expressed in types. Read the AGENTS.md or CLAUDE.md chain governing the changed files, from the repository root down, for the rules a caller is expected to follow.
Report incorrect results that can occur in a realistic input or system state.
Prioritize those that persist incorrect data, because application code can be redeployed but written data may require repair.
Do not report guards for states the types or the callers already rule out.