Vite-native unit and integration testing framework with Jest-compatible API and parallel execution.
Works with
Supports testing Vue, React, and Svelte components with configurable environments (Node, jsdom, or browser mode)
Provides Jest-compatible API including describe/it blocks, hooks, fixtures, and globals configuration
Includes comprehensive mocking capabilities: vi.fn for function mocks, vi.mock for module mocking, and timer/date utilities
Offers code coverage thresholds, snapshot test
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionvitestExecute the skills CLI command in your project's root directory to begin installation:
Fetches vitest from onmax/nuxt-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate vitest. Access via /vitest in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
619
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
619
stars
Vite-native testing framework with Jest-compatible API.
npm i -D vitest
// vitest.config.ts
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
globals: true,
environment: 'node', // or 'jsdom' for DOM tests
},
})
// example.test.ts
import { describe, expect, it, vi } from 'vitest'
describe('math', () => {
it('adds numbers', () => {
expect(1 + 1).toBe(2)
})
})
| Task | File |
|---|---|
| Configuration, CLI, projects | config.md |
| test/describe, hooks, fixtures | test-api.md |
| vi.fn, vi.mock, timers, spies | mocking.md |
| expect, snapshots, coverage, filtering | utilities.md |
| Environments, type testing, browser mode | advanced.md |
Consider loading these reference files based on your task:
DO NOT load all files at once. Load only what's relevant to your current task.
vue skill for component patternsts-library skill for library patternsvite skill for shared configPrerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
pproenca/dot-skills
jezweb/claude-skills
bobmatnyc/claude-mpm-skills
cexll/myclaude
github/awesome-copilot
github/awesome-copilot
vitest has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: vitest is focused, and the summary matches what you get after install.
Registry listing for vitest matched our evaluation — installs cleanly and behaves as described in the markdown.
vitest fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
vitest is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Useful defaults in vitest — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
I recommend vitest for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Useful defaults in vitest — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Keeps context tight: vitest is the kind of skill you can hand to a new teammate without a long onboarding doc.
I recommend vitest for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 50