Update config
Agent Skills collection — Reusable capabilities for AI coding agents. Install: npx skills add TheWatcher01/skillsFrom the repository description
npx -y skills add TheWatcher01/skills --skill update-configAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.6 KB, 472 tokens by cl100k_base, as published. Nobody here has run it
Update Config
Sync skills from ~/.claude/skills/ into this repo's claude-code-config/skills/ and update skills/ symlinks.
Trigger
Use when asked to "update config", "sync skills", or "refresh skills from ~/.claude".
Rules
- ONLY sync skills that already exist in
claude-code-config/skills/- never add new skills from~/.claude/skills/ - Skip symlinks in
~/.claude/skills/(those point to external repos like openclaw) - Exclude
node_modules,bun.lockb,.DS_Storewhen copying - Always update the symlink in
skills/to point to../claude-code-config/skills/<name> - Run
bun test:runafter syncing to verify nothing broke
Workflow
-
List current repo skills:
ls claude-code-config/skills/ -
For each skill in
claude-code-config/skills/, check if it exists as a non-symlink directory in~/.claude/skills/:# Check it's a real directory, not a symlink [ -d "$HOME/.claude/skills/<name>" ] && [ ! -L "$HOME/.claude/skills/<name>" ] -
Sync content for matching skills:
trash claude-code-config/skills/<name> rsync -a --exclude='node_modules' --exclude='bun.lockb' --exclude='.DS_Store' \ ~/.claude/skills/<name>/ claude-code-config/skills/<name>/ -
Update symlink in
skills/:rm skills/<name> 2>/dev/null # remove old symlink if exists ln -s ../claude-code-config/skills/<name> skills/<name> -
Verify: Run
bun test:run -
Report: List which skills were synced and which were skipped (not found in
~/.claude/skills/)
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.