agentsclimarketplace

Update plugins

Skill NecturaLabs/AgentSkills/skills/update-plugins

Update all installed plugin marketplaces and their plugins concurrently. Use when the user asks to update plugins, check for updates, or refresh their plugin installations.From its SKILL.md

Install
npx -y skills add NecturaLabs/AgentSkills --skill update-plugins

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things 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.
  • runs commandsInstructs the agent to run 4 commands, including `claude plugin marketplace list` and 3 more.

SKILL.md

1.6 KB, 307 tokens by cl100k_base, as published. Nobody here has run it

Update Plugins

Update all installed plugin marketplaces concurrently, then reinstall plugins that have newer versions available.

Procedure

Step 1: Discover Installed Marketplaces

Run claude plugin marketplace list to get all registered marketplaces. Parse the output to extract marketplace names.

Step 2: Update All Marketplaces Concurrently

Use the superpowers:dispatching-parallel-agents pattern — launch one subagent per marketplace, each running:

claude plugin marketplace update <marketplace-name>

All agents run in parallel. Collect results from each.

Step 3: Update Installed Plugins

After marketplace updates complete, run claude plugin list to see installed plugins. For each installed plugin, update it:

claude plugin update <plugin-name>@<marketplace-name>

Run these concurrently as well. This uses version comparison — plugins already at the latest version are skipped.

Step 4: Report Results

Present a summary table:

MarketplaceStatus
nameUpdated / Already up to date / Failed: reason
PluginVersionStatus
name@marketplacevX.Y.ZUpdated / Already current / Failed: reason

Error Handling

  • If a marketplace update fails, report it but continue with the others
  • If a plugin reinstall fails, report it but continue with the others
  • Never abort the entire operation due to a single failure

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.