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 pproenca/dot-skills --skill vitestgit clone --depth 1 https://github.com/pproenca/dot-skillsWrote 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/pproenca/dot-skills/vitest)<a href="https://agentmods.dev/skills/pproenca/dot-skills/vitest"><img src="https://agentmods.dev/badge/skills/pproenca/dot-skills/vitest.svg" alt="Measured on agentmods" height="20"></a>- Socket pass
- Snyk pass
- 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.00075 | $0.01266 |
| Opus 5 | $0.00037 | $0.00633 |
| Sonnet 5 | $0.00015 | $0.00253 |
| Haiku 4.5 | $0.00007 | $0.00127 |
Grade A, and why
vitest 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 8d ago.
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 — 121 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
50 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.
- AGENTS.md 9.4 KB
- assets/templates/_template.md 888 B
- CHANGELOG.md 699 B
- metadata.json 949 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/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.
- 8d ago First seen · 121 lines · 75 tokens per session scan A fdcad4d741a0
vitest is a skill published in the GitHub repository pproenca/dot-skills (203 stars, last pushed 23d ago), licensed MIT. It adds 75 tokens to every session and 1,266 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-08-30.
Other skills, from other repositories
research-engineer
An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.
tika-eval-compare
Compare extracts from two Tika builds over a corpus to detect regressions in content, encoding, exceptions, and embedded-document handling. Use for "compare before/after extracts", "eval this change against the corpus".
neuron-evaluation-engineer
Create and run AI evaluations with datasets, assertions, and output drivers in Neuron AI. Use this skill whenever the user mentions evaluation, testing AI systems, creating evaluators, dataset-driven testing, assertion-based validation, or wants to measure AI system performance. Also trigger for tasks involving…
jetson-validate-image
Use after jetson-flash-image to run static BSP checks, on-target smoke/regression tests on a flashed DUT, or both. Not for build or flash steps. Triggers: validate bsp, on-target validation.
atmos-validation
Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.
skill-benchmark
Benchmark AI skill effectiveness by measuring implementation quality against legacy constraints.