How this command is triggered — by the user, by Claude, or both
Slash command
/plugin-dev:updateThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Update plugin-dev Verify and fix the `plugin-dev` CLI installation. ## Execution
Verify and fix the plugin-dev CLI installation.
OS="$(uname -s)"
TARGET="${HOME}/.local/bin/plugin-dev"
SOURCE="${CLAUDE_PLUGIN_ROOT}/scripts/plugin-dev"
if [[ ! -f "$TARGET" && ! -L "$TARGET" ]]; then
echo "Not installed. Run /plugin-dev:install first."
exit 1
fi
case "$OS" in
MINGW*|MSYS*|CYGWIN*)
cp -f "$SOURCE" "$TARGET"
chmod +x "$TARGET"
echo "Updated: copied latest plugin-dev to $TARGET"
;;
*)
if [[ -L "$TARGET" ]]; then
current=$(readlink "$TARGET")
if [[ "$current" == "$SOURCE" ]]; then
echo "OK: symlink is valid"
else
ln -sf "$SOURCE" "$TARGET"
echo "Fixed: updated symlink to $SOURCE"
fi
else
echo "WARNING: $TARGET is a regular file, not a symlink. Re-creating as symlink."
ln -sf "$SOURCE" "$TARGET"
echo "Fixed: replaced with symlink to $SOURCE"
fi
;;
esac
plugin-dev version
npx claudepluginhub bengous/claude-code-plugins --plugin plugin-dev/updateUpdates beads issue fields: status, priority, assignee, title, or description. Accepts [issue-id] [value]; prompts interactively if missing. Applies via tool and shows updated issue.
/updateUpdates GSD to the latest version with changelog display and user confirmation. Also supports --sync, --reapply, and --next/--rc flags for advanced workflows.
/updateTriggers an incremental Repowise index update, syncing documentation with recent code changes. Detects modified files, regenerates affected wiki pages, and updates metadata.
/updateUpdates the statusLine path in settings.json to point to the latest cached version of the claude-dashboard plugin.
/updateUpdates tracked llmdoc/ documentation to match repository state, selecting the lightest viable mode (fast, analysis, or full) based on context freshness.
/updateChecks the current plugin version against the marketplace and guides the user through applying available updates.