From ecc
Pulls the latest ECC repository changes and regenerates managed installs from the recorded install-state request.
How this command is triggered — by the user, by Claude, or both
Slash command
/ecc:auto-updateThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Auto Update Update ECC from its upstream repo and regenerate the current context's managed install using the original install-state request. ## Usage ## Notes - This command uses the recorded install-state request and reruns `install-apply.js` after pulling the latest repo changes. - Reinstall is intentional: it handles upstream renames and deletions that `repair.js` cannot safely reconstruct from stale operations alone. - Use `--dry-run` first if you want to see the reconstructed reinstall plan before mutating anything.
Update ECC from its upstream repo and regenerate the current context's managed install using the original install-state request.
# Preview the update without mutating anything
ECC_ROOT="${CLAUDE_PLUGIN_ROOT:-$(node -e "var r=(function(){var p=require('path'),f=require('fs'),o=require('os');var e=process.env.CLAUDE_PLUGIN_ROOT;if(e&&e.trim())return e.trim();var d=p.join(o.homedir(),'.claude');function L(x){try{return require(p.join(x,'scripts','lib','resolve-ecc-root')).resolveEccRoot()}catch(_){return null}}var r=L(d);if(r)return r;var s=['ecc','ecc@ecc','marketplaces/ecc','everything-claude-code','everything-claude-code@everything-claude-code','marketplaces/everything-claude-code'];for(var i=0;i<s.length;i++){r=L(p.join(d,'plugins',s[i]));if(r)return r}try{var g=['ecc','everything-claude-code'];for(var j=0;j<g.length;j++){var c=p.join(d,'plugins','cache',g[j]);var O=f.readdirSync(c);for(var k=0;k<O.length;k++){var q=p.join(c,O[k]);var V=f.readdirSync(q);for(var m=0;m<V.length;m++){r=L(p.join(q,V[m]));if(r)return r}}}}catch(_){}return d})();console.log(r)")}"
node "$ECC_ROOT/scripts/auto-update.js" --dry-run
# Update only Cursor-managed files in the current project
node "$ECC_ROOT/scripts/auto-update.js" --target cursor
# Override the ECC repo root explicitly
node "$ECC_ROOT/scripts/auto-update.js" --repo-root /path/to/everything-claude-code
install-apply.js after pulling the latest repo changes.repair.js cannot safely reconstruct from stale operations alone.--dry-run first if you want to see the reconstructed reinstall plan before mutating anything.npx claudepluginhub krishnakanthb13/everything-claude-code5plugins reuse this command
First indexed Jul 4, 2026
/auto-updatePulls the latest ECC repository changes and regenerates managed installs from the recorded install-state request.
/auto-updatePulls latest ECC repository changes and reinstalls managed targets using recorded installation state. Supports --dry-run preview and --target flag.
/update-pluginUpdates plugins from the marketplace interactively with version detection, automatic backup, verification, and rollback on failure. Supports --check-only, --yes, --json, and other flags.
/updateDetects cc-hooks installation mode (plugin or standalone) and checks for updates, installing them if available.
/updateUpdates installed commands and agents from a source repository, supporting dry-run preview, force update, orphan pruning, and custom source paths or git URLs.
/updateUpdates the Forge plugin to the latest upstream version, detecting the install method (git, marketplace cache, or custom path) and reporting the version delta.