A suite of focused code-review skills for Tessl Agent and GitHub Actions review workflows (`tessl change review`). Each review lens is its own skill, so a workflow can invoke one lens or several. Fork and tune any skill for your own repository.
—
—
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
A legibility review lens for tessl change review. Readers see code, not the
journey that produced it, and they read it literally and locally. Where a piece
of code can only be understood by reading its caller, its producer, or git
history, the code is structurally wrong. Review the diff for those gaps and
report concrete, actionable findings.
Apply both to each structural decision in the diff — a name, a location, a type, an abstraction:
The recurring anti-patterns, with their fixes, are catalogued in references/anti-patterns.md. The main families:
Record<string, X> and similar that
hide the key/value relationship, and functions whose arguments only make sense
if you know the caller.