一键导入
nextjs-turbopack
Next.js 16+ Turbopack development patterns -- Rust-based bundler for faster dev startup, HMR, file-system caching, and bundle analysis.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Next.js 16+ Turbopack development patterns -- Rust-based bundler for faster dev startup, HMR, file-system caching, and bundle analysis.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Regression testing strategies for AI-assisted development. Sandbox-mode API testing without database dependencies, automated bug-check workflows, and patterns to catch AI blind spots.
Clean Architecture patterns for Android and Kotlin Multiplatform projects -- module structure, dependency rules, UseCases, Repositories, and data layer patterns.
Performance baseline and regression detection -- page performance, API latency, build times, and before/after comparison.
Turn a one-line objective into a step-by-step construction plan for multi-session, multi-agent engineering projects. Each step has a self-contained context brief so a fresh agent can execute it cold.
Automated visual testing and interaction verification -- smoke tests, interaction tests, visual regression, and accessibility audits using browser automation.
Bun as runtime, package manager, bundler, and test runner. When to choose Bun vs Node, migration notes, and Vercel support.
| name | nextjs-turbopack |
| description | Next.js 16+ Turbopack development patterns -- Rust-based bundler for faster dev startup, HMR, file-system caching, and bundle analysis. |
| origin | ECC |
Next.js 16+ defaults to Turbopack for local development, a Rust-based incremental bundler that significantly accelerates startup times and hot module replacement (HMR).
next dev)Turbopack is the default bundler for next dev in Next.js 16+. It provides significantly faster cold start and HMR, especially in large applications. File-system caching means restarts are much faster (e.g., 5-14x on large projects). Cache data resides in the .next directory without additional configuration.
Webpack remains available if you encounter Turbopack compatibility issues or depend on webpack-specific plugins. Disable Turbopack via command-line flags.
Build behavior depends on your Next.js version; consult official documentation for guidance on production bundling.
An experimental Bundle Analyzer (Next.js 16.1+) helps identify performance bottlenecks and oversized dependencies.