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
Code review lenses for use from Tessl Agent and GitHub Actions review workflows via tessl change review. Each lens is its own skill, so a workflow can point at exactly the lenses it wants.
Between them they cover the common dimensions a review is expected to catch, and they are designed to run together. Name them all unless a workflow is scoped to paths that carry one signal.
tessl change review takes one or more --skill references. A reference can be a local path (a SKILL.md file or a skill directory), an installed skill name, or a registry ref workspace/plugin[@version]#skill. Pass only the lenses you want; skills are not auto-discovered.
Pin the version in a reference you keep. An unpinned ref resolves to whatever the latest published version is, so its meaning changes under you when the plugin is republished.
tessl change review --skill tessl/code-review@0.0.2#review-security-and-privacySeveral lenses in one run:
tessl change review \
--skill tessl/code-review@0.0.2#review-security-and-privacy \
--skill tessl/code-review@0.0.2#review-correctness-and-data-integrityOr a lens you keep in your own repository, which is also how you iterate on one you have forked:
tessl change review --skill ./review-lenses/review-scale-and-resiliencetessl change review only emits structured review data; a GitHub caller posts it as an overall review plus inline comments. In a workflow step, select the lenses relevant to the changed paths and write the result to a file:
tessl change review \
--skill tessl/code-review@0.0.2#review-security-and-privacy \
--skill tessl/code-review@0.0.2#review-correctness-and-data-integrity \
--base origin/main \
--json --output review.jsonThen post review.json from a later step. Because each lens is a separate --skill, a workflow can choose lenses per changed path, for example running only the security lens on a workflow scoped to src/auth/**.
The lenses are meant to be forked. Copy one into your own repository and tune it for your codebase, then reference it by local path instead of by registry ref. Or publish it to the registry to share it across your repositories.
A skill needs name and description frontmatter. Past that, the shape is a suggestion rather than a contract, and a reasonable starting point if you have no strong view of your own:
Several of these lenses hold two or three related dimensions, so treat one lens per dimension as a tendency rather than a rule. What matters more is that a lens stays short and carries only what makes it distinct.
This version also contains review-code-legibility, review-contract-boundaries, review-local-precedent, review-security-risks and review-test-risk, unchanged from 0.0.1. The lenses above supersede them. They are retained so existing unpinned references keep resolving, and they are not part of the recommended set.