Install
openclaw skills install @nexaiguy/nex-depcheckSkill dependency checker. Scan Python skills for external dependencies. Verify stdlib-only compliance, check individual files or entire skill directories. No database needed, pure file scanner.
openclaw skills install @nexaiguy/nex-depcheckSkill dependency checker. Scan Python skills to verify they only use stdlib and internal imports. Catch external dependencies before publishing.
bash setup.sh
| Command | What it does |
|---|---|
check | Check one skill for external deps |
scan | Scan all skills in a directory |
file | Check a single Python file |
stdlib | Check if a module is in Python stdlib |
Check a skill before publishing:
"Does nex-timetrack have any external dependencies?"
nex-depcheck check /path/to/nex-timetrack
Scan all skills at once:
"Check all my skills for external deps"
nex-depcheck scan /path/to/skills
Check if a module is stdlib:
"Is pathlib part of the standard library?"
nex-depcheck stdlib pathlib
No database. Pure file scanner. Reads Python files, parses imports, classifies them.
MIT-0 on ClawHub (free for any use). AGPL-3.0 on GitHub (commercial licenses via info@nex-ai.be).