CtrlK
BlogDocsLog inGet started
Tessl Logo

uinaf/review

Review existing code, diffs, branches, or pull requests using concern-specific reviewer personas and evidence. Use when auditing someone else's work, triaging risk in a PR, or producing a ship-it / needs-review / blocked verdict. Do not use to verify your own completed change; use `verify` for that.

98

1.31x
Quality

100%

Does it follow best practices?

Impact

92%

1.31x

Average score across 3 eval scenarios

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

task.mdevals/scenario-3/

Quick Review: Documentation Typo Fix

Problem/Feature Description

A developer on a small open-source project has submitted a pull request that fixes a single typo in the project's README and corrects a wrong parameter name in one JSDoc comment on a utility function. The change touches no logic, no tests, no configuration, and no API contracts — it's purely cosmetic documentation cleanup.

The maintainer wants a rapid review verdict so they can merge or reject it before their weekly release cut. They don't want to spend time on a full audit of the codebase — they just need to know if this tiny change is safe to merge.

Output Specification

Produce a review report saved to review-report.md that gives the maintainer a clear, concise answer on whether to merge.

Input Files

The following files are provided as inputs. Extract them before beginning.

=============== FILE: repo/README.md (AFTER change) ===============

my-utils

A collection of small utility functions for Node.js projects.

Installation

npm install my-utils

Usage

See the API docs for each function.

=============== FILE: repo/README.md (BEFORE change) ===============

my-utils

A collection of smal utility functions for Node.js projects.

Installation

npm install my-utils

Usage

See the API docs for each function.

=============== FILE: repo/src/utils/format.ts (AFTER change) =============== /**

  • Formats a number as currency.
  • @param value - The numeric value to format
  • @param currency - The ISO 4217 currency code (e.g. 'USD')
  • @returns Formatted currency string */ export function formatCurrency(value: number, currency: string): string { return new Intl.NumberFormat('en-US', { style: 'currency', currency }).format(value); }

=============== FILE: repo/src/utils/format.ts (BEFORE change) =============== /**

  • Formats a number as currency.
  • @param amount - The numeric value to format
  • @param currency - The ISO 4217 currency code (e.g. 'USD')
  • @returns Formatted currency string */ export function formatCurrency(value: number, currency: string): string { return new Intl.NumberFormat('en-US', { style: 'currency', currency }).format(value); }

evals

SKILL.md

tile.json