LLM Skills
~/catalogue/debugging et maintenance//worktree-check

Vérification de l'état de l'arborescence de travail

/worktree-check

Vérifier l'état actuel de l'arborescence de travail, la branche et la tâche attribuée

davila7davila7
30.6k
22 mai 2026
MIT License
// contenu du skill

allowed-tools: Bash(git:), Bash(cat:), Bash(pwd:), Bash(ls:)

description: Check current worktree status, branch, and assigned task


Worktree Status Check

Verify the current worktree environment and show task details.

Instructions

You are inside a worktree (or the main repo). Gather and display the current status clearly.

Step 1: Detect Worktree

  1. Get the current directory: pwd
  2. List all worktrees: git worktree list
  3. Determine if the current directory is a worktree (not the main working tree). The main working tree is listed first in git worktree list output — if the current path matches the first entry, this is the main repo, not a worktree.

If this is not a worktree, inform the user:

You're in the main repository, not a worktree. Use /worktree-init to create worktrees.

Then list any existing worktrees and exit.

Step 2: Show Branch Info

  1. Get current branch: git branch --show-current
  2. Verify it follows the claude/*, claude-daniel/*, or review/* naming convention
  3. Show how many commits ahead of origin/main: git rev-list --count origin/main..HEAD

Step 3: Read Task

  1. Check if .worktree-task.md exists in the worktree root
  2. If it exists, read and display its contents
  3. If it doesn't exist, note that no task file was found (may have been created manually)

Step 4: Show Working Status

Run and display:

  1. git status --short — show modified, staged, and untracked files
  2. git diff --stat — show a summary of unstaged changes

Step 5: Display Summary

Present a clean summary:

Worktree Status
──────────────────────────────────
Branch:    claude/<name>
Task:      <task description from .worktree-task.md>
Commits:   <N> ahead of main
Modified:  <N> files
Staged:    <N> files
Untracked: <N> files
──────────────────────────────────

If there are changes ready to deliver, suggest: "Run /worktree-deliver when you're ready to commit, push, and create a PR."

// source originale publique
davila7/claude-code-templates
/.claude/commands/worktree-check.md
Licence : MIT License
Projet indépendant, non affilié à Anthropic. Ce skill reste la propriété de son auteur original.
// installer ce skill
Collez cette commande dans votre terminal à la racine de votre projet :
mkdir -p .claude/commands && curl -o ".claude/commands/worktree-check.md" "https://raw.githubusercontent.com/davila7/claude-code-templates/main/.claude/commands/worktree-check.md"
Ensuite dans Claude Code, tapez /worktree-check pour l'activer.
open_in_newVoir la source originale
// sauvegarder
Sauvegarde disponible après connexion.
loginSe connecter pour sauvegarder
// informations
Créateurdavila7
Étoiles 30.6k
LicenceMIT License
Mis à jour22 mai 2026
Format.md
AccèsGratuit
// similaires

Skills Debugging et maintenance

Voir toutarrow_forward