From antigravity-awesome-skills
Systematically identifies and fixes failing tests by grouping errors by type, module, and root cause, prioritizing infrastructure fixes first. For test fix requests or failure reports.
npx claudepluginhub sickn33/antigravity-awesome-skillsThis skill uses the workspace's default tool permissions.
Systematically identify and fix all failing tests using smart grouping strategies.
Systematically identifies and fixes failing tests by grouping errors by type, module, and root cause, prioritizing infrastructure fixes first. For test fix requests or failure reports.
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.
Orchestrates context-aware tests: smart selection via git diff mapping or framework flags (Jest --changedSince, Vitest --changed), progressive ladder (unit->integration->E2E), failure triage with root cause analysis and safe auto-fixer actions.
Share bugs, ideas, or general feedback.
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 identified