Advanced configuration for Vite 8 (Rolldown-powered, stable Mar 2026) with Environment API from Vite 7.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionvite-advancedExecute the skills CLI command in your project's root directory to begin installation:
Fetches vite-advanced from yonatangross/orchestkit 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 vite-advanced. Access via /vite-advanced 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
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
140
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
140
stars
Advanced configuration for Vite 8 (Rolldown-powered, stable Mar 2026) with Environment API from Vite 7.
Vite 8 replaces esbuild+Rollup with Rolldown (Rust-based unified bundler), delivering 7.7x faster builds and 50% less memory. This is now the default for all new projects.
npm install vite@8 # Direct upgrade
Key improvements:
| Metric | Vite 7 | Vite 8 | Improvement |
|---|---|---|---|
| Build time (Linear) | 46s | 6s | 7.7x faster |
| Dev server startup | ~3s | ~1s | 3x faster |
| HMR updates | ~100ms | ~60ms | 40% faster |
| Memory usage | ~800MB | ~400MB | 50% reduction |
Breaking changes from Vite 7:
build.rollupOptions → build.rolldownOptions (auto-converted with deprecation warning)transformWithEsbuild → transformWithOxctransform() returning JS must add moduleType: 'js' to return valuemanualChunks object form removed — use function form or advancedChunks'system' / 'amd' output formats no longer supportedVite 8 introduces declarative chunk grouping with priority control and size constraints:
export default defineConfig({
build: {
rolldownOptions: {
output: {
advancedChunks: {
groups: [
{ name: 'react-vendor', test: /[\\/]node_modules[\\/](react|react-dom)[\\/]/, priority: 20 },
{ name: 'ui-vendor', test: /[\\/]node_modules[\\/]@radix-ui[\\/]/, priority: 15, minShareCount: 2 },
{ name: 'vendor', test: /[\\/]node_modules[\\/]/, priority: 10, maxSize: 500000 },
],
},
},
},
},
})
Load Read("${CLAUDE_SKILL_DIR}/references/vite8-rolldown.md") for full migration options, benchmarks, advancedChunks syntax, Oxc benefits, and migration checklist.
Multi-environment support (client/SSR/edge) is first-class:
export default defineConfig({
environments: {
client: { build: { outDir: 'dist/client' } },
ssr: { build: { outDir: 'dist/server', ssr: true } },
},
});
Load Read("${CLAUDE_SKILL_DIR}/references/environment-api.md") for full configuration, per-environment plugins, Builder API, and buildApp hook.
Hooks for config, transform, resolveId, load, virtual modules, HMR, and environment-aware transforms.
Load Read("${CLAUDE_SKILL_DIR}/references/plugin-development.md") for plugin structure, hook execution order, and advanced patterns.
Middleware mode for dev, separate client/server builds for prod, streaming SSR support.
Load Read("${CLAUDE_SKILL_DIR}/references/ssr-configuration.md") for entry points, dev/prod server setup, and streaming patterns.
Chunk splitting with advancedChunks (Vite 8, preferred) or manualChunks (Vite 7 legacy), tree shaking, minification, and bundle analysis.
Load Read("${CLAUDE_SKILL_DIR}/references/chunk-optimization.md") for chunk strategies, build targets, and optimization checklist.
| Feature | Vite 8 Status |
|---|---|
| Rolldown bundler | Default (replaces esbuild+Rollup) |
| Environment API | Stable (from Vite 7) |
| ESM-only distribution | Default |
| Node.js requirement | 20.19+ or 22.12+ |
advancedChunks |
New (replaces manualChunks) |
buildApp hook |
Stable (for multi-env plugins) |
createBuilder |
Multi-env builds |
| Oxc integration | Parsing 3x faster than SWC |
| Decision | Recommendation |
|---|---|
| New projects | Vite 8 (default) |
| Existing production apps | Evaluate Vite 8, use rolldown-vite for gradual migration |
| Multi-env builds | Environment API (environments config) |
| Plugin scope | Use this.environment for env-aware plugins |
| SSR | Middleware mode for dev, separate builds for prod |
| Chunks | advancedChunks for Vite 8, manualChunks for Vite 7 compat |
biome-linting - Fast linting alongside Viteork:react-server-components-framework - SSR integrationedge-computing-patterns - Edge environment buildsork:storybook-testing - Component testing with VitestLoad on demand with Read("${CLAUDE_SKILL_DIR}/references/<file>"):
| File | Content |
|---|---|
vite8-rolldown.md |
Rolldown migration, benchmarks, advancedChunks, Oxc benefits |
environment-api.md |
Multi-environment builds, Builder API, per-env plugins |
plugin-development.md |
Plugin hooks, virtual modules, HMR, env-aware transforms |
ssr-configuration.md |
Entry points, dev/prod servers, streaming SSR |
library-mode.md |
Building publishable npm packages |
chunk-optimization.md |
advancedChunks, manualChunks, tree shaking, bundle analysis |
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
asyrafhussin/agent-skills
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
vite-advanced fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Keeps context tight: vite-advanced is the kind of skill you can hand to a new teammate without a long onboarding doc.
vite-advanced is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Keeps context tight: vite-advanced is the kind of skill you can hand to a new teammate without a long onboarding doc.
vite-advanced has been reliable in day-to-day use. Documentation quality is above average for community skills.
vite-advanced fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Useful defaults in vite-advanced — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
vite-advanced has been reliable in day-to-day use. Documentation quality is above average for community skills.
Registry listing for vite-advanced matched our evaluation — installs cleanly and behaves as described in the markdown.
vite-advanced reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 66