claudeers.
// Claude Skills

update-skills

Keep all your custom skills up-to-date

Slowing down
75/100
last commit 3 months ago
last release none
releases 0
open issues 0

Install with your AI

Paste into Claude Code, Cursor, or any agent — it reads the repo and wires the tool into your project.

Install and set up update-skills (claude-skill project) into my current project.
Found on https://claudeers.com/update-skills
Repo: https://github.com/pcx-wave/update-skills
Homepage/docs: —
Detected install method: claude-skill → # copy this skill into .claude/skills/update-skills/
Category: skills. Platforms: api.
Read the repo's README for exact setup and env vars, then install it and wire it into my project.

Claudeers Health Verdict:
slowing; community-verified: false. Confirm the source before running anything.
// or install directly (claude-skill)
# copy the skill dir into your project:
# .claude/skills/update-skills/   (or ~/.claude/skills/update-skills/ for all projects)
// or clone
git clone https://github.com/pcx-wave/update-skills

// compatibility

Platformsapi
Operating systems
AI compatibilityclaude
LicenseMIT
Pricingopen-source
LanguagePython

update-skills

Stop losing track of where your Claude Code skills came from.

The problem

You've installed 30+ Claude Code skills. Some from GitHub. Some from gists. Some from that blog post you bookmarked but can't find again.

There's no pip list equivalent. No plugin marketplace. No update manager. Just a pile of SKILL.md files with no connection to their source. When a skill ships a bugfix, you won't know. Neither will Claude.

This is the gap between "it works" and "I can maintain it."

What this skill does

  • Discovers the canonical GitHub repo for each of your manually installed skills
  • Tracks the exact commit SHA of what you have installed vs what's upstream
  • Updates any skill — or all of them — with one command
  • Rolls back if an update breaks something
  • Zero pip dependencies. No API keys needed for source resolution. You're not locked into anything.

Install

git clone https://github.com/pcx-wave/update-skills ~/.claude/skills/update-skills

Usage

Step 1 — Resolve sources (first time only)

Tell Claude to find where each skill originally came from:

"find the source repos for my skills"

Claude reads each SKILL.md, searches verbatim phrases on DuckDuckGo, and writes a .skill-source file per skill. No script, no token. Done once.

Step 2 — Check for updates

# Check all skills
python ~/.claude/skills/update-skills/scripts/check_updates.py

# Check a specific skill
python ~/.claude/skills/update-skills/scripts/check_updates.py --skill vibe

Compares local skill content against upstream (with GITHUB_TOKEN: SHA-by-SHA precision; without: content comparison via SKILL.md).

Step 3 — Update

# Update every outdated skill at once
python ~/.claude/skills/update-skills/scripts/update_skill.py all

# Update specific skills
python ~/.claude/skills/update-skills/scripts/update_skill.py vibe geo

Revert if something breaks

python ~/.claude/skills/update-skills/scripts/update_skill.py --revert vibe
python ~/.claude/skills/update-skills/scripts/update_skill.py --revert all

Previous versions are backed up automatically before each update.

How source resolution works

  1. Reads verbatim phrases from the first 10 lines of each local SKILL.md
  2. Searches DuckDuckGo: github <skill-name> <verbatim phrase>
  3. For each candidate repo found, fetches the first 10 lines of the remote SKILL.md
  4. Rejects candidates where no sentence matches verbatim — eliminates forks and similarly-named but different skills
  5. Writes a .skill-source file so this is a one-time cost per skill

.skill-source format

Each resolved skill directory gets a hidden JSON file:

{
  "repo": "owner/repo",
  "path": "skills/vibe",
  "confidence": "unique",
  "last_sha": "a1b2c3d4e5f6789abcdef1234567890abcdef12",
  "previous_sha": "9f8e7d6c5b4a3210fedcba9876543210fedcba98"
}

GITHUB_TOKEN — optional

Both modes work out of the box. The difference is precision and rate limits.

Without tokenWith GITHUB_TOKEN
DetectionSKILL.md content comparisonExact commit SHA comparison
MissesUpdates that don't touch SKILL.mdNothing
Rate limit60 GitHub API req/hour — inconsistent if run repeatedly5000/hour — no practical limit

To add a token permanently: echo 'export GITHUB_TOKEN=<token>' >> ~/.bashrc

Requirements

  • Python 3.10+ — no pip dependencies, no virtualenv, no node_modules

// faq

What is update-skills?

Keep all your custom skills up-to-date. It is open-source on GitHub.

Is update-skills free to use?

update-skills is open-source under the MIT license, so it is free to use.

What category does update-skills belong to?

update-skills is listed under skills in the Claudeers registry of Claude-compatible tools.

3 views
23 stars
unclaimed
updated 14 days ago

// embed badge

update-skills on Claudeers
[![Claudeers](https://claudeers.com/api/badge/update-skills.svg)](https://claudeers.com/update-skills)

// retro hit counter

update-skills hit counter
[![Hits](https://claudeers.com/api/counter/update-skills.svg)](https://claudeers.com/update-skills)

// reviews

// guestbook

0/500

// related in Claude Skills

🔓

An agentic skills framework & software development methodology that works.

// skillsobra/Shell272,506MIT[ claude ]
🔓

Public repository for Agent Skills

// skillsanthropics/Python169,406[ claude ]
🔓

💫 Toolkit to help you get started with Spec-Driven Development

// skillsgithub/Python129,208MIT[ claude ]
🔓

AI coding assistant skill (Claude Code, Codex, OpenCode, Cursor, Gemini CLI, and more). Turn any folder of code, SQL schemas, R scripts, shell scripts, docs,…

// skillsGraphify-Labs/Python106,387MIT[ claude ]
→ see how update-skills connects across the ecosystem