with one click
vite
// Use when setting up Vite projects - provides dev server, HMR, build configuration, library mode, and plugin authoring patterns
// Use when setting up Vite projects - provides dev server, HMR, build configuration, library mode, and plugin authoring patterns
Design and implement web animations that feel natural and purposeful. Use this skill proactively whenever the user asks questions about animations, motion, easing, timing, duration, springs, transitions, or animation performance. This includes questions about how to animate specific UI elements, which easing to use, animation best practices, or accessibility considerations for motion. Triggers on: easing, ease-out, ease-in, ease-in-out, cubic-bezier, bounce, spring physics, keyframes, transform, opacity, fade, slide, scale, hover effects, microinteractions, Framer Motion, React Spring, GSAP, CSS transitions, entrance/exit animations, page transitions, stagger, will-change, GPU acceleration, prefers-reduced-motion, modal/dropdown/tooltip/popover/drawer animations, gesture animations, drag interactions, button press feel, feels janky, make it smooth.
Suggest conventional commit or pull request titles in the format type(scope): title, written in lowercase English. Use when asked to propose commit messages or PR titles, especially for /create-commit or /create-pr requests.
Generate multiple radically different interface designs for a module using parallel sub-agents. Use when designing an API, exploring interface options, comparing module shapes, or "design it twice".
Conversational refactor planner - interview, scope, plan tiny atomic commits. Use when planning a refactor that needs careful incremental steps.
Conversational PRD writer - interview, scope, write, then create Linear/GitHub issue. Use when planning a new feature or product requirement.
Use when managing Node.js dependencies with pnpm - provides workspace setup, catalogs, CLI commands, overrides, and CI configuration
| name | vite |
| description | Use when setting up Vite projects - provides dev server, HMR, build configuration, library mode, and plugin authoring patterns |
| license | MIT |
Next-gen frontend build tool with native ESM dev server and Rolldown-powered builds.
npm create vite@latest my-app
// vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 3000,
},
})
vite # Dev server
vite build # Production build
vite preview # Preview build
| Task | File |
|---|---|
| Config file, options, CLI, plugins | config.md |
| ESM, CSS, assets, env vars, glob import | features.md |
| Dev server, HMR, workers, performance | dev.md |
| Production, library mode, SSR, chunking | build.md |
| JS API, plugin authoring, module graph | 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.
vitest skill (Vite-native testing)vue skill for component patternstsdown skill for TypeScript libs