Created
January 7, 2026 20:13
-
-
Save lisaross/00df88056f8a22fcd9a801663efa8036 to your computer and use it in GitHub Desktop.
Claude Code plugin sync script - updates marketplace catalogs and all installed plugins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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