agent work verifier

    by Johnny Gu

    1

    Detect unfinished code, empty tests, and swallowed errors in AI-generated diffs using structural analysis.

    Secure checkout via Stripe

    0 installsSecurity scanned

    Works with the AI tools you already use

    CClaude CodeCCursorCCodex CLIGGitHub CopilotGGemini CLIVVS CodeWWindsurfMManus+14 more

    See it in action

    You say

    Run the work verifier on the changes I just made to the authentication module.

    Your agent does

    CRITICAL: src/auth.py:42 - Stub function 'validate_token' contains only 'pass'. CRITICAL: tests/test_auth.py:12 - Test 'test_login_flow' contains no assertions. WARNING: src/auth.py:88 - Exception caught and discarded (bare except). Exit code: 1

    What you get

    Catch 'pass' or 'todo' stubs left by coding agentsIdentify tests that pass without actually asserting resultsFind unused functions that were written but never wired upDetect swallowed exceptions that hide integration bugs

    About this skill

    The problem

    Coding agents often report success on unfinished work. They leave behind pass statements, empty test assertions, and swallowed exceptions that result in false-positive green builds.

    What it does

    • Scans for structural stubs like NotImplementedError, ..., or docstring-only function bodies using Python AST.
    • Detects "hollow" tests that contain no assertions or verifying calls.
    • Identifies code that was defined but never referenced or wired up in the scanned tree.
    • Locates forgotten debug statements like breakpoint(), debugger, or .only test flags.
    • Catches swallowed exceptions and xfail markers that hide runtime failures.

    Frameworks & tools

    Works with Python 3.8+ (AST-based) and JavaScript/TypeScript (pattern-based). No external dependencies required.

    Why this beats prompting it yourself

    Generic LLM prompts often fail to catch their own omissions because the model "hallucinates" that the logic is there. This tool uses structural analysis to find objective evidence of unfinished work that a visual diff review will likely miss.

    Use cases

    • Pre-merge checks for AI-generated pull requests.
    • Automated verification after an agent claims a task is complete.
    • Identifying silent test failures in CI/CD pipelines.
    • Cleaning up debug artifacts and dead code before shipping.

    Known limitations

    Python checks are structural and highly accurate, but JavaScript/TypeScript checks use pattern matching and may yield lower confidence results. It does not judge code quality, style, or performance.

    How to install

    Drop the file into your AI Agent. Works with Claude, Cursor, ChatGPT, and 20+ more.

    Reviews

    No reviews yet

    Be one of the first to try it. Every listed skill passes our trust checks below.

    Security scanned

    Passed our 8-point scan before listing

    Fresh listing

    Recently published to Agensi

    30-day refund

    Not a fit? Get your money back

    Trust & safety

    Security scanned

    Verified clean today

    Listedtoday

    Creator

    Johnny Gu
    Johnny Gu

    3 skills on Agensi

    Frequently Asked Questions

    Popular in Testing & QA