Check for and display available plugin updates
Checks for available updates to the claude-colab plugin and displays current version.
/plugin marketplace add ali/claude-colab/plugin install claude-colab@claude-colabCheck for updates to the claude-colab plugin:
Get current version
# From plugin.json if available
cat ~/.claude/plugins/*/claude-colab/.claude-plugin/plugin.json 2>/dev/null | python3 -c "import sys,json; print(json.load(sys.stdin).get('version', 'unknown'))" || echo "unknown"
Check GitHub for latest release
curl -s "https://api.github.com/repos/ali/claude-colab/releases/latest" | python3 -c "import sys,json; d=json.load(sys.stdin); print(f'Latest: {d.get(\"tag_name\", \"unknown\")}'); print(f'URL: {d.get(\"html_url\", \"\")}')"
Compare and report
/plugin update claude-colabOptional: Check notebook version
_bootstrap_source.ipynb exists, check its version