fuzz
Installation
SKILL.md
Fuzz Input Generation
Generate intelligent, context-aware fuzz test inputs by analyzing input parsing code. Produces boundary values, type confusion inputs, encoding edge cases, format-specific attacks, and injection payloads tailored to the specific parser and data types in scope. Output is structured JSON test case sets ready for integration with test harnesses.
Supported Flags
Read ../../shared/schemas/flags.md for the full flag specification.
| Flag | Fuzz Behavior |
|---|---|
--scope |
Identifies which input handlers to generate fuzz inputs for. Default changed. |
--depth quick |
Standard boundary values and common injection strings only. |
--depth standard |
Context-aware inputs based on code analysis of the parser. |
--depth deep |
Standard + format-specific attacks, encoding mutations, and chained payloads. |
--depth expert |
Deep + adversarial inputs designed to bypass specific validation logic found in code. |
Related skills