Plugin updater
Skill aksh-3141/claude-toolshed/plugins/plugin-updater/skills/plugin-updater
Auto-update third-party marketplace plugins on session startFrom its SKILL.md
npx -y skills add aksh-3141/claude-toolshed --skill plugin-updaterAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 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.8 KB, 464 tokens by cl100k_base, as published. Nobody here has run it
/plugin-updater
User request: "$ARGUMENTS"
Task
Manage the third-party plugin auto-updater. Force an immediate update or show status of installed plugins.
Routes
| Argument | Action |
|---|---|
| (empty) | Force-update all third-party plugins now |
status | Show plugin health dashboard |
Process
Step 1: Resolve skill directory
SKILL_DIR="$(find "$HOME/.claude/plugins/cache" -type d -name "plugin-updater" -path "*/skills/plugin-updater" 2>/dev/null | head -1)"
[[ -z "$SKILL_DIR" ]] && SKILL_DIR="$(find "$HOME" -maxdepth 8 -type d -name "plugin-updater" -path "*/skills/plugin-updater" 2>/dev/null | head -1)"
echo "SKILL_DIR=$SKILL_DIR"
If SKILL_DIR is empty, stop with: "Could not locate the plugin-updater skill directory. Ensure the plugin is installed."
Step 2: Route by argument
If $ARGUMENTS is empty or update → go to Step 3 (force update).
If $ARGUMENTS is status → go to Step 4 (status dashboard).
Otherwise → show: "Unknown argument. Use /plugin-updater (force update) or /plugin-updater status."
Step 3: Force update
Remove the cooldown timestamp so the hook script runs immediately:
rm -f "$HOME/.claude/plugins/.last-auto-update"
Then run the update script directly:
bash "$(find "$HOME/.claude/plugins/cache" -type f -name "session-update-plugins.sh" -path "*/plugin-updater/hooks/*" 2>/dev/null | head -1)"
Display the output. If the script produced no output, say: "All third-party plugins are up to date."
Step 4: Status dashboard
Run the status script:
bash "$SKILL_DIR/scripts/plugin-status.sh"
Display the output as-is — it's already formatted for terminal display.
What ships with it: 1 file
7.6 KB alongside SKILL.md, 1 of them executable
scripts/
- plugin-status.shruns7.6 KB