Set up, author, tune, and roll out tessl change verify checks for pull requests
65
82%
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
Use this playbook when verifier candidates come from AGENTS.md, CLAUDE.md, Cursor rules, skill files, tile rules, or repo documentation that already tells agents how to write code.
.cursor/rules, skill SKILL.md files, tile
rules, and local docs if the user points to them.context or references when useful so future
maintainers know where the rule came from.AGENTS.md often mixes repo policy, coding style, workflow instructions, and generated-file rules. Treat these differently:
diff verifiers because they depend
on which files changed together.file verifiers.Use this intermediate table before writing JSON:
| Source | Raw instruction | Candidate invariant | Scope | Applicability signal | Decision |
|---|---|---|---|---|---|
| AGENTS.md | "..." | "..." | file/diff/paths | import/path/API/diff marker | verifier / docs / lint / skip |
Raw context:
After modifying backend route handlers, request/response schemas, or TypeBox types that affect the API contract, regenerate OpenAPI and frontend types.
Verifier candidate:
diffDiff that changes apps/backend route handlers, request or response schemas, or TypeBox API contract typesBackend API contract changes are accompanied by regenerated OpenAPI and frontend API type artifacts.openapi-updated: The diff includes the backend OpenAPI artifact when API contract source files changed.frontend-types-updated: The diff includes regenerated frontend API types when backend API contract source files changed.This is suitable because the evidence is the change set, not a single file.