From v1tamins
Use when tests are failing and need systematic fixing until all pass. Triggers on "fix tests", "tests failing", "make tests pass".
How this skill is triggered — by the user, by Claude, or both
Slash command
/v1tamins:v1-fix-testsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this when you have failing test output. The goal is to **fix ALL failing tests, re-run tests, and iterate until everything passes**.
Use this when you have failing test output. The goal is to fix ALL failing tests, re-run tests, and iterate until everything passes.
Typical invocations:
/v1-fix-testsv1-fix-tests from the skills menu or use $v1-fix-testsUse this after you've pasted test failure output into the conversation.
Understands ALL Failures
✗ or FAILED markers)Fixes EACH Failure
Re-runs Tests for EACH Fix
pytest (or with -k for specific tests)npm run lint or npm run testRe-runs Full Test Suite
Backend (pytest):
pytest # All unit tests
pytest -k "pattern" # Specific tests
pytest tests/integration/ # Integration tests
Frontend:
npm run lint
npm run test
npx claudepluginhub v1-io/v1tamins --plugin v1taminsGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.