agentsclimarketplace

Update config

Skill TheWatcher01/skills/.claude/skills/update-config

Agent Skills collection — Reusable capabilities for AI coding agents. Install: npx skills add TheWatcher01/skillsFrom the repository description

Install
npx -y skills add TheWatcher01/skills --skill update-config

Assembled 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_Store when copying
  • Always update the symlink in skills/ to point to ../claude-code-config/skills/<name>
  • Run bun test:run after syncing to verify nothing broke

Workflow

  1. List current repo skills:

    ls claude-code-config/skills/
    
  2. 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>" ]
    
  3. 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>/
    
  4. Update symlink in skills/:

    rm skills/<name> 2>/dev/null  # remove old symlink if exists
    ln -s ../claude-code-config/skills/<name> skills/<name>
    
  5. Verify: Run bun test:run

  6. 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.

Keep looking

Skills are one crate of 326,871. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.