What problem does it solve? Code is typically tested on the happy path with round values, so bugs hide at input boundaries where unstated assumptions break. This Skill systematically generates edge cases for every input field and verifies whether the system handles each one cleanly or fails silently. ## Core Features & Use Cases - Canonical Boundary Axes: Tests null, empty, zero, negative, huge values, duplicates, Unicode, stale data, deleted data, expired data, and repeated valid actions against each input field. - Coverage Matrix: Produces an input-by-axis table marking each case as handled, failed, or not applicable to document test coverage and prevent rework. - Confidence-Graded Findings: Classifies results as CONFIRMED, HIGH CONFIDENCE, POSSIBLE, or SPECULATIVE, prioritizing silent state corruption over crashes. - Use Case: When auditing a checkout API, use this Skill to test what happens when quantity is 0, price is negative, the coupon is expired, or the same reward is claimed five times. ## Quick Start Audit the payment form inputs for edge cases like null values, negative amounts, huge numbers, and Unicode names, then report which cases break or corrupt state.