9.8k★by lxgicstudios
deps-analyzer – OpenClaw Skill
deps-analyzer is an OpenClaw Skills integration for coding workflows. Find unused and outdated dependencies. Use when your package.json is a mess.
Skill Snapshot
| name | deps-analyzer |
| description | Find unused and outdated dependencies. Use when your package.json is a mess. OpenClaw Skills integration. |
| owner | lxgicstudios |
| repository | lxgicstudios/deps-checker |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lxgicstudios/deps-checker |
| last updated | Feb 7, 2026 |
Maintainer

name: deps-analyzer description: Find unused and outdated dependencies. Use when your package.json is a mess.
Deps Analyzer
Your package.json has 87 dependencies and you use maybe 40 of them. This tool finds the dead weight and tells you what to do about it.
One command. Zero config. Just works.
Quick Start
npx ai-deps
What It Does
- Finds unused dependencies you can remove
- Flags outdated packages with security issues
- Explains what each problematic dependency does
- Can auto-fix by removing unused deps
Usage Examples
# Audit current project
npx ai-deps
# Auto-remove unused deps
npx ai-deps --fix
# Check a specific directory
npx ai-deps --dir ./my-project
Best Practices
- Run before major updates - clean slate before upgrading
- Check devDependencies too - test tools get stale
- Review before fixing - some deps are used dynamically
- Update lockfile after - run npm install after removals
When to Use This
- Your install is taking forever
- Bundle size is way too big
- npm audit has 47 warnings
- You inherited a project with mystery deps
Part of the LXGIC Dev Toolkit
This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.
Find more:
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Substack: https://lxgicstudios.substack.com
- Website: https://lxgicstudios.com
Requirements
No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable.
npx ai-deps --help
How It Works
Runs depcheck to find unused dependencies and npm outdated to find stale ones. Sends the results to GPT-4o-mini for analysis, which explains each issue and prioritizes what to fix first.
License
MIT. Free forever. Use it however you want.
ai-deps
Your package.json is probably a mess. This tool finds unused dependencies, flags outdated ones, and tells you what to do about it.
Install
npm install -g ai-deps
Usage
# Audit current project
npx ai-deps
# Auto-fix (removes unused deps)
npx ai-deps --fix
# Check a specific directory
npx ai-deps --dir ./my-project
What it does
- Runs depcheck to find unused dependencies
- Checks for outdated packages
- Asks OpenAI to analyze the results and give you actionable advice
- Optionally removes unused deps for you
Requirements
Set your OPENAI_API_KEY environment variable.
export OPENAI_API_KEY=sk-...
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
No install needed. Just run with npx. Node.js 18+ recommended. Needs OPENAI_API_KEY environment variable. ```bash npx ai-deps --help ```
FAQ
How do I install deps-analyzer?
Run openclaw add @lxgicstudios/deps-checker in your terminal. This installs deps-analyzer into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/deps-checker. Review commits and README documentation before installing.
