원클릭으로
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