fix-tests

Diagnose failing test outputs and apply minimal fixes across the codebase.

6|2|Updated Jan 15, 2026
One-click install
npx skills add https://github.com/v1-io/v1tamins --skill fix-tests
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fix-tests
Source: https://github.com/v1-io/v1tamins/tree/main/claude/skills/fix-tests
Command: npx skills add https://github.com/v1-io/v1tamins --skill fix-tests

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps teams diagnose and systematically fix all failing tests, iterate on targeted changes, and re-run test suites until everything passes.

Core Features & Use Cases

  • Understand all failures from test output (backend, frontend, lint).
  • Apply smallest, correct fixes for each failing group and re-run the relevant tests.
  • Re-run the full test suite to ensure end-to-end stability and guard against regressions.

Quick Start

Paste failing test output and run /fix-tests to automatically diagnose, fix, and re-run the full test suite until all tests pass.

Frequently Asked Questions about fix-tests

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I fix failing pytest tests automatically from their output?

Yes, you can debug frontend and backend test failures by pasting the output logs. The Skill parses failure details from various test runners, applies targeted fixes, and re-runs the relevant tests to confirm they pass.

What is the best way to ensure fixed tests do not break other parts of the suite?

The best way to prevent regressions is to re-run the full test suite after applying targeted fixes. This verifies that the smallest correct changes made for each failing group maintain end-to-end stability across the codebase.

Does this automated test fixing approach work with npm test runners?

Yes, this automated test fixing approach works with npm and pytest. It requires access to common test runners to run targeted tests after applying fixes and to parse failure details from the output to guide subsequent code changes.

Why do my tests keep failing after I apply a fix to the codebase?

Tests keep failing after a fix if the changes are too broad or incomplete. Apply the smallest correct fixes per failing test group, then re-run targeted tests before checking the whole suite to ensure the fix is accurate.

Can I diagnose and fix linting errors using the same test fixing workflow?

Yes, you can diagnose and fix lint errors using the test fixing workflow. The Skill understands all failures from test output including lint checks, applies targeted fixes, and re-runs the suite to ensure everything passes.