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.
npx -y skills add shivae372/claude-bootstrap --skill self-updateAssembled 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
/updateor 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:
- Back up first:
cp <file> <file>.bak - 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 - Update
bootstrap_versionin.claude/.bootstrap.json.
Safety Rules
- NEVER overwrite
USER_PROFILE.json. - NEVER overwrite a customized
CLAUDE.mdorSESSION_STATE.mdwithout explicit confirmation. - ALWAYS show what will change before applying, and back up before replacing.