Skip to content

Instantly share code, notes, and snippets.

@lisaross
Created January 7, 2026 20:13
Show Gist options
  • Select an option

  • Save lisaross/00df88056f8a22fcd9a801663efa8036 to your computer and use it in GitHub Desktop.

Select an option

Save lisaross/00df88056f8a22fcd9a801663efa8036 to your computer and use it in GitHub Desktop.
Claude Code plugin sync script - updates marketplace catalogs and all installed plugins
#!/bin/bash
# Claude Code plugin sync - run daily alongside brew update
# Update marketplace catalogs
claude plugin marketplace update
# Update each installed plugin
jq -r '.enabledPlugins // {} | keys[]' ~/.claude/settings.json 2>/dev/null | while read plugin; do
claude plugin update "$plugin" 2>/dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment