Notre avis
Ce skill analyse les fichiers ignorés par Git et configure le stockage partagé (ws store) pour synchroniser automatiquement les fichiers de configuration entre les worktrees.
Points forts
- Automatise l'identification des fichiers pertinents à partir du .gitignore
- Propose des stratégies de synchronisation adaptées (symlink ou copie)
- Guide pas à pas avec des commandes exécutables
- Vérifie l'état final de la configuration
Limites
- Nécessite que l'utilisateur valide manuellement chaque décision
- Ne gère pas les fichiers qui ne sont pas encore dans le .gitignore
- Dépend de l'outil ws store propre à Claude Code
Utilisez ce skill lorsque vous travaillez avec plusieurs worktrees et souhaitez partager automatiquement les fichiers ignorés par Git (comme .env, .vscode/settings.json).
Ne l'utilisez pas si vous n'utilisez pas ws store ou si tous vos fichiers sont déjà versionnés.
Analyse de sécurité
SûrThe skill guides the user through analyzing gitignored files and setting up a workspace store using 'ws' commands. There is no execution of destructive, exfiltrating, or obfuscated actions. All allowed tools (Bash, Read, Glob, Grep) are used for legitimate file inspection and standard CLI operations.
Aucun point d'attention détecté
Exemples
Set up ws store for this repository. Analyze .gitignore and configure tracking for .env files and .vscode/settings.json as symlinks.I want to share .claude/settings.local.json across all worktrees using ws store. Help me set it up.Guide me through setting up ws store for my project. Start by reading .gitignore and finding gitignored files that should be shared.name: ws-store-setup description: > Analyze the project's gitignored files and set up the ws store with appropriate tracking strategies. Guides initial store configuration. disable-model-invocation: true allowed-tools: Bash, Read, Glob, Grep
ws store setup
Guide the user through setting up the ws shared store for their repository. The store ensures that gitignored files (like .env, editor configs, local settings) are automatically shared across worktrees.
Step 1: Analyze .gitignore
Read the project's .gitignore file(s) to identify candidates for the store:
# Read gitignore at repo root (worktree level)
cat .gitignore 2>/dev/null
# Also check for nested gitignore files
find . -name .gitignore -not -path './.bare/*' -not -path './worktree-store/*' 2>/dev/null
Step 2: Find existing gitignored files
For each gitignored pattern, check which files actually exist in the current worktree:
# List files that exist but are gitignored
git ls-files --others --ignored --exclude-standard
Focus on files that are:
- Configuration files (
.env,.env.local,.env.development) - Editor/tool settings (
.vscode/settings.json,.idea/,.claude/settings.local.json) - Local overrides that developers typically maintain per-project
Ignore:
- Build artifacts (
node_modules/,target/,dist/,__pycache__/) - Cache directories (
.cache/,.turbo/,.next/) - OS files (
.DS_Store,Thumbs.db) - Log files (
*.log)
Step 3: Determine strategy for each file
Present a table of recommended files and strategies to the user:
Strategy guidelines
| Strategy | When to use | Examples |
|----------|-------------|---------|
| symlink | File should be identical across all worktrees. Editing in one worktree should propagate everywhere. | .claude/settings.local.json, .vscode/settings.json, .editorconfig (local) |
| copy | File may need worktree-specific values. Each worktree gets its own independent copy. | .env, .env.local, .env.development.local |
Decision rules
- Environment files (
.env*) → Almost always copy (different worktrees may run on different ports or have different feature flags) - Editor/IDE settings → Usually symlink (you want consistent editor behavior)
- Claude/AI settings → Usually symlink (consistent AI tool behavior)
- Credentials/tokens → Usually copy (may differ per environment/branch)
- Local config overrides → Depends on the file; ask the user if unsure
Step 4: Get user confirmation
Present the proposed configuration as a clear table:
File Strategy Reason
.env copy Environment-specific values
.env.local copy Local overrides
.claude/settings.local.json symlink Shared AI tool settings
.vscode/settings.json symlink Consistent editor config
Ask the user to:
- Review and approve/modify the list
- Confirm strategies for any files you're unsure about
- Add any files they want that weren't auto-detected
Step 5: Execute tracking
After user confirmation, track each file:
# Track each file with its strategy
ws store track .env --strategy copy
ws store track .claude/settings.local.json --strategy symlink
# ... repeat for each file
# Push store files to all existing worktrees
ws store push
Step 6: Verify
Run ws store status to verify everything was set up correctly:
ws store status
Check that all files show OK status. If any show MISSING or ERROR, troubleshoot:
MISSING: File doesn't exist in the current worktree yet — may need to create it first, thenws store pullMISSING(store): File exists in worktree but not in store — runws store pull <file>to import itNOT_LINK: Strategy is symlink but file is a regular file —ws store pushshould fix this
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.