一键导入
vite-dependency-repair
Debugging and repairing Vite import-analysis errors, missing package entrypoints, and corrupted node_modules installations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Debugging and repairing Vite import-analysis errors, missing package entrypoints, and corrupted node_modules installations.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guidelines and production-ready patterns for maximizing performance and avoiding UI freezes in React Three Fiber (R3F) and Three.js scenes.
Firecrawl CLI gives AI agents and apps fast, reliable web context with strong search, scraping, and interaction tools. One install command sets up three skill segments: live CLI tools, app-integration build skills, and outcome-focused workflow skills. Route the reader to the right usage path after install.
Deploy, configure, and scale serverless workers, static applications, and integrations on Cloudflare. Specializes in Wrangler-based automation, Accountless/Temporary deployments (using wrangler deploy --temporary), and Binding resources. Use this skill in the following scenarios: * Serverless Deployment: When designing, scaffolding, or deploying Cloudflare Workers or Cloudflare Pages. * Accountless Testing: When performing frictionless testing or instant production previews without pre-configuring accounts or secrets. * Binding and Resources Integration: When binding D1 Databases, KV Stores, R2 Storage Buckets, or Hyperdrive to serverless handlers. * Configuration Tuning: When crafting, optimizing, or debugging wrangler.toml configurations.
Interacting with the Framer Agent workspace (@framer/agent), inspecting canvas status, applying design and page hierarchy modifications using Framer DSL commands, and deploying/publishing page layouts safely.
Manage version control and coordinate with remote repositories using the pre-installed Git binary. This skill covers repository initialization, remote management, branching strategies, and handling authentication in a headless environment. Use this skill in the following scenarios: * Repository Setup: When initializing new repositories or connecting to existing remotes. * Version Control Workflow: For staging changes, committing, and pushing/pulling from remote origins. * Remote Management: Configuring and verifying remote URLs. * Headless Automation: Performing Git operations within automated scripts and pipelines.
The advanced multi-agent orchestrator system to handle complex tasks by decomposing them into highly focused sequential worker agents (parallel read, sequential write) followed by a comprehensive Quality Assurance / Auditor review.
| name | vite-dependency-repair |
| description | Debugging and repairing Vite import-analysis errors, missing package entrypoints, and corrupted node_modules installations. |
This skill helps agents diagnose, debug, and resolve dependency resolution errors in Vite projects (e.g., [plugin:vite:import-analysis] Failed to resolve entry for package).
When Vite complains that it cannot resolve package entrypoints or modules:
framer-motion, phosphor-react).node_modules/<package-name>/package.json to inspect the exports, main, or module properties."module": "dist/es/index.mjs" is defined, check if dist/es/index.mjs actually exists in the local file system..mjs or sub-esm files), the local node_modules installation is corrupted.npm install is interrupted or packages are cached incorrectly.Do not rely on standard npm install or npm install --force when directory structures are partially populated, as npm might falsely report that packages are up-to-date based on the lockfile.
Instead, execute the following clean repair:
npm run dev) before making filesystem changes.Remove-Item -Recurse -Force node_modules in PowerShell.rm -rf node_modules.npm install to recreate the directory structure cleanly.npm run dev) and monitor the Vite pre-bundling process to verify that dependencies resolve without issue.