Our review
This skill analyzes gitignored files and configures the ws store to automatically share configuration files across worktrees.
Strengths
- Automatically identifies relevant files from .gitignore
- Suggests appropriate sync strategies (symlink or copy)
- Provides step-by-step guidance with executable commands
- Verifies final configuration status
Limitations
- Requires user confirmation for each decision
- Does not handle files not yet in .gitignore
- Depends on the ws store tool specific to Claude Code
Use this skill when working with multiple worktrees and you want to automatically share gitignored files like .env or editor settings.
Do not use this skill if you are not using ws store or if all your files are already versioned.
Security analysis
SafeThe 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.
No concerns found
Examples
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
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.