env-debug
Installation
SKILL.md
Environment Debugging
Troubleshoot PATH, permissions, env vars, and configuration issues.
"Command Not Found"
# Check if command exists
which node
which python
command -v node
type node
# Check PATH
echo $PATH
echo $PATH | tr ':' '\n' # One per line