From supervibe
Use BEFORE writing any production code for a feature or bugfix to enforce red-green-refactor with integration-tests-first discipline. Triggers: 'TDD', 'red-green-refactor', 'failing test', 'тесты сначала'.
npx claudepluginhub vtrka/supervibe --plugin supervibeThis skill is limited to using the following tools:
BEFORE writing any production code for a new feature, bug fix, or refactor that changes behavior. Triggered when implementation step is reached in `supervibe:executing-plans`.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
BEFORE writing any production code for a new feature, bug fix, or refactor that changes behavior. Triggered when implementation step is reached in supervibe:executing-plans.
NOT for: pure config changes, scaffolding files, documentation updates, dependency bumps.
Follow docs/references/skill-expert-operating-standard.md: start from source of truth, preserve retrieval evidence, apply scope safety, use real producers with runtime receipts for durable delegated outputs, verify before completion claims, and keep confidence below gate when evidence is partial.
package.json / composer.json / Cargo.toml (vitest/jest/pytest/phpunit/cargo test/etc.)npm test, pytest, etc.) and per-file invocation formWhat kind of test?
├─ Pure logic (formatter, parser, calculator) → unit test
├─ Boundary code (API endpoint, DB query, file IO) → integration test (real DB if possible)
├─ Cross-system (third-party API call) → contract test + recorded response
└─ UI behavior → e2e test (Playwright/Cypress)
Mock policy?
├─ Project has rules/no-mock-X.md → real X always (DB, filesystem, etc.)
├─ External service unavailable in dev → record-replay (VCR-style)
└─ Otherwise → test against real dependency by default
Returns:
tests/... matching project conventionsupervibe:systematic-debugging — when test fails for wrong reasonsupervibe:executing-plans — invokes this skill per task that requires production code