Zeigt wichtige Umgebungsvariablen und Shell-Config
Displays and analyzes shell environment variables, configurations, and installed tool versions.
/plugin marketplace add fellnerd/claude-marketplace/plugin install my-mac-plugin@dimetrics-marketplaceZeigt und analysiert die Shell-Umgebung.
echo "HOME: $HOME"
echo "USER: $USER"
echo "SHELL: $SHELL"
echo "TERM: $TERM"
echo "EDITOR: ${EDITOR:-nicht gesetzt}"
echo "LANG: $LANG"
echo $PATH | tr ':' '\n' | nl
env | sort
env | grep -i "{{VAR_NAME}}"
echo "=== Aktive Shell-Configs ==="
for f in ~/.zshrc ~/.zprofile ~/.bashrc ~/.bash_profile ~/.profile; do
[ -f "$f" ] && echo "✅ $f ($(wc -l < "$f") Zeilen)" || echo "❌ $f"
done
alias
echo "Node: $(node --version 2>/dev/null || echo 'nicht installiert')"
echo "npm: $(npm --version 2>/dev/null || echo 'nicht installiert')"
echo "Python: $(python3 --version 2>/dev/null || echo 'nicht installiert')"
echo "Ruby: $(ruby --version 2>/dev/null || echo 'nicht installiert')"
echo "Go: $(go version 2>/dev/null || echo 'nicht installiert')"
echo "Rust: $(rustc --version 2>/dev/null || echo 'nicht installiert')"
source ~/.zshrc
echo "Shell-Konfiguration neu geladen"