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

# Find where a binary lives
which -a python       # All matches in PATH
Related skills

More from 1mangesh1/dev-skills-collection

Installs
5
GitHub Stars
3
First Seen
Feb 21, 2026