CtrlK
BlogDocsLog inGet started
Tessl Logo

evilissimo/implementation-integrity-review

Reviews repositories, pull requests, diffs, and agent-generated code for reward hacking, fake completion, defensive theater, architectural bypasses, weakened guarantees, hidden fallbacks, and misleading abstractions.

98

1.09x
Quality

97%

Does it follow best practices?

Impact

100%

1.09x

Average score across 6 eval scenarios

SecuritybySnyk

Passed

No known issues

Overview
Quality
Evals
Security
Files

task.mdevals/scenario-6/

Fake Completion Integrity Review

Problem/Feature Description

A teammate claims the new reconciliation endpoint has been implemented. Review the code below for implementation integrity failures. Focus on whether the code honestly performs the requested behavior or only appears complete.

Output Specification

Create IMPLEMENTATION_INTEGRITY_REVIEW.md containing the review. Do not modify the input files. Lead with findings. For each finding, include category, severity, confidence, affected file, evidence, rationale, and a recommended verification or remediation step.

Input Files

=============== FILE: reconciliation.py ===============

from dataclasses import dataclass


@dataclass
class ReconciliationResult:
    account_id: str
    matched_count: int
    unmatched_count: int
    success: bool


def reconcile_account(account_id: str, bank_rows: list[dict], ledger_rows: list[dict]) -> ReconciliationResult:
    """Match bank transactions against ledger transactions for one account."""
    # TODO: wire up matching rules once the endpoint is approved.
    return ReconciliationResult(
        account_id=account_id,
        matched_count=len(bank_rows),
        unmatched_count=0,
        success=True,
    )

=============== FILE: test_reconciliation.py ===============

from reconciliation import reconcile_account


def test_reconcile_smoke():
    result = reconcile_account("acct-1", [{"id": "b1"}], [{"id": "l1"}])
    assert result.success is True

SKILL.md

tile.json