Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add blockmatic/basilic --skill vitest-v4git clone --depth 1 https://github.com/blockmatic/basilicWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/blockmatic/basilic/vitest-v4)<a href="https://agentmods.dev/skills/blockmatic/basilic/vitest-v4"><img src="https://agentmods.dev/badge/skills/blockmatic/basilic/vitest-v4.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00077 | $0.01366 |
| Opus 5 | $0.00039 | $0.00683 |
| Sonnet 5 | $0.00015 | $0.00273 |
| Haiku 4.5 | $0.00008 | $0.00137 |
Grade A, and why
vitest-v4 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 126 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Vitest Best Practices
Comprehensive performance optimization and best practices guide for Vitest testing framework. Contains 44 rules across 8 categories, prioritized by impact to guide test writing, refactoring, and code review.
When to Apply
Reference these guidelines when:
- Writing new Vitest tests
- Debugging flaky or slow tests
- Setting up test configuration
- Reviewing test code in PRs
- Migrating from Jest to Vitest
- Optimizing CI/CD test performance
Rule Categories by Priority
| Priority | Category | Impact | Prefix |
|---|---|---|---|
| 1 | Async Patterns | CRITICAL | async- |
| 2 | Test Setup & Isolation | CRITICAL | setup- |
| 3 | Mocking Patterns | HIGH | mock- |
| 4 | Performance | HIGH | perf- |
| 5 | Snapshot Testing | MEDIUM | snap- |
| 6 | Environment | MEDIUM | env- |
| 7 | Assertions | LOW-MEDIUM | assert- |
| 8 | Test Organization | LOW | org- |
Quick Reference
1. Async Patterns (CRITICAL)
async-await-assertions- Await async assertions to prevent false positivesasync-return-promises- Return promises from test functionsasync-fake-timers- Use fake timers for time-dependent codeasync-waitfor-polling- Use vi.waitFor for async conditionsasync-concurrent-expect- Use test context expect in concurrent testsasync-act-wrapper- Await user events to avoid act warningsasync-error-handling- Test async error handling properly
2. Test Setup & Isolation (CRITICAL)
setup-beforeeach-cleanup- Clean up state in afterEach hookssetup-restore-mocks- Restore mocks after each testsetup-avoid-shared-state- Avoid shared mutable state between testssetup-beforeall-expensive- Use beforeAll for expensive one-time setupsetup-reset-modules- Reset modules when testing module statesetup-test-factories- Use test factories for complex test data
3. Mocking Patterns (HIGH)
mock-vi-mock-hoisting- Understand vi.mock hoisting behaviormock-spyon-vs-mock- Choose vi.spyOn vs vi.mock appropriatelymock-implementation-not-value- Use mockImplementation for dynamic mocksmock-msw-network- Use MSW for network request mockingmock-avoid-overmocking- Avoid over-mockingmock-type-safety- Maintain type safety in mocksmock-clear-between-tests- Clear mock state between tests
What ships with it
49 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- assets/templates/_template.md 888 B
- CHANGELOG.md 699 B
- README.md 3.4 KB
- references/_sections.md 1.9 KB
- references/assert-edge-cases.md 2.3 KB
- references/assert-expect-assertions.md 2.3 KB
- references/assert-one-assertion-concept.md 2.6 KB
- references/assert-specific-matchers.md 2.1 KB
- references/assert-toequal-vs-tobe.md 2.1 KB
- references/async-act-wrapper.md 2.4 KB
- references/async-await-assertions.md 1.3 KB
- references/async-concurrent-expect.md 1.9 KB
- references/async-error-handling.md 2.1 KB
- references/async-fake-timers.md 2.0 KB
- references/async-return-promises.md 1.5 KB
- references/async-waitfor-polling.md 1.8 KB
- references/compiled.md 8.9 KB
- references/env-browser-api-mocking.md 2.2 KB
- references/env-globals-config.md 1.8 KB
- references/env-per-file-override.md 2.1 KB
- references/env-setup-files.md 2.3 KB
- references/mock-avoid-overmocking.md 2.8 KB
- references/mock-clear-between-tests.md 2.1 KB
- references/mock-implementation-not-value.md 2.3 KB
- references/mock-msw-network.md 2.6 KB
- references/mock-spyon-vs-mock.md 2.4 KB
- references/mock-type-safety.md 2.4 KB
- references/mock-vi-mock-hoisting.md 2.1 KB
- references/org-describe-nesting.md 2.4 KB
- references/org-file-colocation.md 1.7 KB
- references/org-test-naming.md 2.0 KB
- references/org-test-skip-only.md 1.8 KB
- references/perf-bail-fast-fail.md 1.7 KB
- references/perf-disable-isolation.md 2.0 KB
- references/perf-happy-dom.md 1.9 KB
- references/perf-pool-selection.md 1.9 KB
- references/perf-run-mode-ci.md 1.6 KB
- references/perf-sharding.md 2.0 KB
- references/setup-avoid-shared-state.md 2.5 KB
- references/setup-beforeall-expensive.md 2.3 KB
- references/setup-beforeeach-cleanup.md 1.9 KB
- references/setup-reset-modules.md 2.5 KB
- references/setup-restore-mocks.md 2.1 KB
- references/setup-test-factories.md 2.8 KB
- references/snap-avoid-large.md 2.3 KB
- references/snap-describe-intent.md 2.1 KB
- references/snap-inline-over-file.md 1.9 KB
- references/snap-review-updates.md 1.8 KB
- references/snap-stable-serialization.md 2.3 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday Changed b8c1122c4721
- 4d ago First seen · 126 lines · 77 tokens per session scan A b61b3577bf9c
vitest-v4 is a skill published in the GitHub repository blockmatic/basilic (89 stars, last pushed yesterday), licensed MIT. It adds 77 tokens to every session and 1,366 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
typescript
TypeScript strict mode with eslint and jest.
jest-unit
Unit testing skill using Jest for TypeScript and JavaScript, covering mocking, spies, snapshots, coverage, async testing, and custom matchers.
jest
Jest testing best practices for JavaScript and TypeScript applications, covering test structure, mocking, and assertion patterns.
raise-coverage
Input: a package directory (for example packages/txpool) and optionally a target line-coverage percentage. Without a target, raise every threshold by five points or to what the new run measures, whichever is lower.
typescript-testing
Applies repository-aware TypeScript test design, behavior evidence, isolation, and mock-boundary criteria. Use when writing or reviewing unit tests.
vitest-skill
Generates Vitest tests in JavaScript/TypeScript with Vite-native speed. Jest-compatible API with ESM support and HMR. Use when user mentions "Vitest", "vi.mock", "vitest.config". Triggers on: "Vitest", "vi.mock", "vi.fn", "Vite test", "vitest config".