From antigravity-awesome-skills
Groups all failing tests by error type and root cause, then fixes them in dependency order with focused verification before moving to the next group.
How this skill is triggered — by the user, by Claude, or both
Slash command
/antigravity-awesome-skills:test-fixingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Systematically identify and fix all failing tests using smart grouping strategies.
Systematically identify and fix all failing tests using smart grouping strategies.
Run make test to identify all failing tests.
Analyze output for:
Group similar failures by:
Prioritize groups by:
For each group (starting with highest impact):
Identify root cause
git diffImplement fix
Verify fix
uv run pytest tests/path/to/test_file.py -v
uv run pytest -k "pattern" -v
Move to next group
Infrastructure first:
Then API changes:
Finally, logic issues:
After all groups fixed:
make testgit diff to understand recent changesUser: "The tests are failing after my refactor"
make test → 15 failures identifiednpx claudepluginhub sickn33/antigravity-awesome-skills --plugin antigravity-bundle-aas-mobile-app-builderSystematically identifies and fixes failing tests by grouping errors by type, module, and root cause. Prioritizes infrastructure fixes first, verifies subsets with pytest patterns before full suite.
Context-aware test orchestration: smart test selection via git diff mapping, progressive test ladder (unit→integration→E2E), failure triage with root cause analysis, and safe auto-fixers.
Guides systematic investigation of test failures using dual-hypothesis approach (test wrong vs. implementation bug) and step-by-step protocol. Use for diagnosing test errors or establishing test failure mindset.