ワンクリックで
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