plugin-update — manage plugin versions

Caution

Running old plugin versions causes silent mismatches. Skills added in newer releases are missing. Fixes don’t apply. The skill manifest Claude loads at startup can be weeks behind the repo. There is no auto-update prompt — you have to ask.

Tip

One skill checks, installs, and updates the full brewcode suite. Interactive by default — or pass check / update / all to skip questions. For individual skill toggling, see /brewtools:skill-toggle.

Quick reference

FieldValue
Command/brewtools:plugin-update
Arguments[check|update|all] — no args = interactive
Modelsonnet
Contextsession
ToolsRead, Bash, Write, AskUserQuestion, WebFetch

When to use

  • Version check before a long session — confirm the suite is current before investing time
  • After seeing unfamiliar errors — an outdated plugin may lack a fix already released
  • First run on a new machine — install all four plugins non-interactively with all
  • CI / scripted setupall mode skips every confirmation prompt
SituationCommand
Just check versions, change nothing/brewtools:plugin-update check
Update what’s outdated, skip missing/brewtools:plugin-update update
Install missing + update all, no prompts/brewtools:plugin-update all
Walk through each decision interactively/brewtools:plugin-update

Examples

# Interactive — check versions and decide what to update
/brewtools:plugin-update

# Status check only — no changes made
/brewtools:plugin-update check
# Update all outdated plugins non-interactively
/brewtools:plugin-update update

# Install missing + update all — fully non-interactive
/brewtools:plugin-update all

After a run you will see a version table like this:

PluginInstalledLatestStatus
brewcode3.4.513.4.52⬇️ update available
brewdoc3.4.513.4.51✅ current
brewtools3.4.51❌ missing
brewui3.4.513.4.51✅ current

Status legend: ✅ current · ⬇️ update available · ❌ missing · ❓ unknown.

Flow

  1. Discover installed plugins

    Runs discover-plugins.sh, which reads ~/.claude/settings.json and walks the plugin cache at ~/.claude/plugins/cache/. Outputs a JSON object with each installed plugin and its version. claude plugin list does not exist as a subcommand — the script bypasses it entirely.

  2. Fetch latest versions

    Fetches release metadata from GitHub. If the network request fails, all latest versions are marked “unknown” and the run continues — you can still update without knowing the exact latest tag.

  3. Render status table

    Prints the version table for all four suite plugins (brewcode, brewdoc, brewtools, brewui) plus any other installed plugins as informational rows. Argument check stops here — no changes are made.

  4. Install missing plugins

    For each suite plugin not present: asks whether to install (interactive) or auto-installs (all mode). Runs claude plugin marketplace add first (idempotent), then per-plugin install. Skipped entirely for the update argument.

  5. Update outdated plugins

    Runs the full update chain in order: marketplace refresh, then each of the four plugins. Shows full CLI output for every command. In interactive mode, asks before proceeding. Any single failure is reported and the chain continues.

  6. Auto-update toggle hint

    Only in interactive and all modes. Explains how to enable per-marketplace auto-update via the /plugin UI (Marketplaces → claude-brewcode). The skill never patches settings.json directly — the exact key is unverified.

  7. Reload notice + final summary

    Always printed, even on no-op runs. Lists what was installed, updated, skipped, and any errors. Preferred reload: run /reload-plugins in this session. Fallback: exit, then claude again.

Warning

Run /reload-plugins or restart the session after any install or update. Claude Code reads skill and agent definitions once at startup — changes take effect only after a reload.

Internals

Discovery — no claude plugin list. The skill uses discover-plugins.sh, which parses ~/.claude/settings.json for marketplace registrations and walks ~/.claude/plugins/cache/ for installed version directories.

Update chain — runs in this fixed order:

claude plugin marketplace update claude-brewcode
claude plugin update brewcode@claude-brewcode
claude plugin update brewdoc@claude-brewcode
claude plugin update brewtools@claude-brewcode
claude plugin update brewui@claude-brewcode

Each command runs via the Bash tool with full output shown. Failures are reported inline; remaining steps continue regardless.

Interactive gatesAskUserQuestion presents option lists only (no free-text). Three decision points: install missing, update outdated, enable auto-update. Explicit arguments (check, update, all) bypass all three.

Claude refuses to execute? — if Claude summarizes instead of running commands, paste this coercive prompt: “Execute every claude plugin ... command shown above using the Bash tool. Do not describe — run each command and show full output.”

⚙️

Skill Toggle

Disable individual skills without uninstalling. State persists across plugin updates.

🧩

Agent Toggle

Same disable/enable mechanic for agents instead of skills.

🔗

GitHub source

Source code, discovery scripts, and update references.

📄

Brewtools overview

All brewtools skills in one place.

Updating plugins

Use /brewtools:plugin-update to check and update the brewcode plugin suite in one command. See the FAQ for details.