Ouvrir l'Explorateur Windows

VérifiéSûr

Ouvre l'Explorateur Windows à la racine du répertoire git courant. Utile pour naviguer rapidement dans la structure du projet.

Spar Skills Guide Bot
ProductiviteDébutant
2002/06/2026
Claude Code
#windows#file-explorer#git-root#navigation

Recommandé pour

Notre avis

Ouvre l'Explorateur Windows à la racine du dépôt Git actuel.

Points forts

  • Accès direct au répertoire racine du projet via l'explorateur
  • Fonctionne avec ou sans dépôt Git (fallback sur le dossier courant)
  • Commande rapide et simple à déclencher

Limites

  • Nécessite Windows et l'outil cygpath (Cygwin ou Git Bash)
  • Ne fonctionne pas sur macOS ou Linux
  • Ouvre uniquement la racine, pas un sous-dossier spécifique
Quand l'utiliser

Lorsque l'utilisateur demande à ouvrir l'explorateur de fichiers dans le dossier racine du projet.

Quand l'éviter

Sur un système non-Windows ou si l'utilisateur souhaite ouvrir un sous-dossier précis.

Analyse de sécurité

Sûr
Score qualité85/100

The skill merely opens Windows Explorer in a specified directory. It uses git rev-parse and cygpath to resolve the path, but only triggers a GUI explorer window. There is no destructive action, data exfiltration, or execution of arbitrary code. The use of cmd.exe is controlled and limited to launching explorer.

Aucun point d'attention détecté

Exemples

Open explorer
Open explorer in the project root.
Show in explorer
Show the current repository in Windows Explorer.

name: explorer description: | Open Windows Explorer in the current git worktree root. Use when user says "open explorer", "open folder", "show in explorer". allowed-tools:

  • Bash

Open Explorer

cmd.exe /c "explorer $(cygpath -w "$(git rev-parse --show-toplevel 2>/dev/null || pwd)")"

Confirm to the user which folder was opened.

Skills similaires