Explore specialized agent skills in the Debugging category.
Evaluate how logic handles edge cases and extreme inputs. Use when checking robustness, debugging failures, or testing boundaries like empty input, zero values, or limits
npx skills add blunotech-dev/agents --skill check-boundary-conditions
State the likely root cause before writing code. Use when debugging bugs, errors, or failing tests to enforce hypothesis-driven fixes.
npx skills add blunotech-dev/agents --skill hypothesize-before-fix
npx skills add blunotech-dev/agents --skill isolate-variable
npx skills add blunotech-dev/agents --skill trace-execution
Validate that function inputs match the expected shape. Use when debugging unexpected behavior, null errors, type issues, or incorrect arguments.
npx skills add blunotech-dev/agents --skill validate-inputs-first