ワンクリックで
v1-fix-tests
Use when a failing test suite needs systematic repair. Triggers on "fix tests", "tests failing", or "make tests pass".
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when a failing test suite needs systematic repair. Triggers on "fix tests", "tests failing", or "make tests pass".
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when explicitly choosing which v1tamins skill fits a task. Triggers on "which v1 skill", "v1 menu", or "/v1-menu".
Use when the user explicitly requests phone-a-friend, a counterpart review, steelman, or peer consult. Triggers on /v1-phone-a-friend or $v1-phone-a-friend only.
Use when explicitly convening several peer agents to review a PR or branch. Triggers on "review board", "multi-agent review", or "fan out a review".
Use when refining working code through a quality pass, deslop, or hindsight rewrite. Triggers on "make this diff simpler", "reduce complexity", or "deslop".
Use when diagnosing a throughput bottleneck in a process, funnel, queue, or WIP system. Triggers on "where is this process stuck?", "find the bottleneck", or "too much WIP".
Use when creating a self-contained HTML page, report, or interactive explainer. Triggers on "one-page dashboard", "shareable page", or "interactive report".
| name | v1-fix-tests |
| description | Use when a failing test suite needs systematic repair. Triggers on "fix tests", "tests failing", or "make tests pass". |
| allowed-tools | ["Bash","Read","Edit","Grep"] |
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)v1-debug skillFixes 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
v1-write-tests rather than restating them here.v1-debug to stabilize the reproduction (measure the failure rate; isolate time, randomness, filesystem, and network) before patching.Backend (pytest):
pytest # All unit tests
pytest -k "pattern" # Specific tests
pytest tests/integration/ # Integration tests
Frontend:
npm run lint
npm run test