agentsclimarketplace

Self update

Skill shivae372/claude-bootstrap/.claude/skills/self-update

Self-healing, self-learning Claude Code setup — finds, installs, or forges the skills, hooks & MCP your project needs, in real time. Pairs with nodo.

Install
npx -y skills add shivae372/claude-bootstrap --skill self-update

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

  • 1 stars1 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.

What its author says it does

Copied from the file, not written here

Checks whether the project's claude-bootstrap setup is current and applies updates safely. Compares the installed version against the source repo, shows what changed, and updates only what the user approves. Triggered by /update.

SKILL.md

1.8 KB, as published. Nobody here has run it

Purpose

Keep a project's bootstrap config current without clobbering the user's customizations.

When To Use This

  • The user runs /update or asks "is my Claude setup outdated?"

Steps

1. Read the installed version

python3 -c 'import json,pathlib; p=pathlib.Path(".claude/.bootstrap.json"); \
print(json.loads(p.read_text()).get("bootstrap_version","unknown") if p.exists() else "unknown")'

2. Read the latest version from the source repo

curl -fsSL https://raw.githubusercontent.com/shivae372/claude-bootstrap/master/VERSION 2>/dev/null || echo unknown

3. Compare and report (plain language)

  • Up to date → say so and stop.
  • Outdated → summarize what changed using the repo's CHANGELOG.md (curl -fsSL https://raw.githubusercontent.com/shivae372/claude-bootstrap/master/CHANGELOG.md).

4. Apply selectively (only what the user approves)

Offer: hooks, skills, commands, stack templates, or just-show-me. For each chosen item:

  1. Back up first: cp <file> <file>.bak
  2. Re-run the installer in merge mode to pull only new/updated component files: curl -fsSL https://raw.githubusercontent.com/shivae372/claude-bootstrap/master/install.sh | bash -s -- --merge
  3. Update bootstrap_version in .claude/.bootstrap.json.

Safety Rules

  • NEVER overwrite USER_PROFILE.json.
  • NEVER overwrite a customized CLAUDE.md or SESSION_STATE.md without explicit confirmation.
  • ALWAYS show what will change before applying, and back up before replacing.

Keep looking

Skills are one crate of 328,083. 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.