一键导入
find-unused-deps
Detect unused npm dependencies in the ResumeAI frontend project.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Detect unused npm dependencies in the ResumeAI frontend project.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run accessibility tests to ensure the ResumeAI application is accessible to all users.
Analyze test coverage reports to identify areas needing more tests.
Run linters, formatters, and type checkers for both frontend and backend code.
Inspect and query the SQLite database used by the ResumeAI application.
Build and run Docker containers for the ResumeAI application.
Manage git branches, commits, and pull requests for ResumeAI development workflow.
| name | find-unused-deps |
| description | Detect unused npm dependencies in the ResumeAI frontend project. |
This skill detects unused npm dependencies in the ResumeAI project to help keep the project lean and reduce bloat.
npm run deps:unused
npm run deps:unused -- --prod
npm run deps:unused -- --dev
npm run deps:unused -- --json
The detection script scans:
src/, components/, pages/, hooks/, utils/, contexts/, store/, i18n/eslint.config.js, vitest.config.ts, vite.config.ts, etc.The script automatically considers these as "used":
@types/*)@org/package)A GitHub Actions workflow (.github/workflows/unused-deps.yml) runs this check on:
Some packages may appear unused but are actually needed:
npm uninstall <package># Run detection
npm run deps:unused
# Remove unused package
npm uninstall unused-package
# Or save exact version if needed for compatibility
npm install unused-package --save-exact
npm audit for security vulnerabilities too