How this skill is triggered — by the user, by Claude, or both
Slash command
/crawl4ai:updateThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check for and apply updates to the Crawl4AI plugin and SDK.
Check for and apply updates to the Crawl4AI plugin and SDK.
Check current versions:
cat ~/.claude/plugins/cache/crawl4ai-claude-plugins/crawl4ai/*/. claude-plugin/plugin.json 2>/dev/null and extract the version field.python3 -c "import crawl4ai_cloud; print(crawl4ai_cloud.__version__)"Check for plugin updates: Run:
/plugin marketplace update crawl4ai-claude-plugins
This refreshes the marketplace catalog from the remote repository.
Check if plugin needs reinstall: After the marketplace update, compare the installed version with the latest available. If different, tell the user:
Plugin update available: v{old} → v{new}
Run: /plugin uninstall crawl4ai@crawl4ai-claude-plugins
Then: /plugin install crawl4ai@crawl4ai-claude-plugins
Update the SDK: Run:
pip3 install --upgrade crawl4ai-cloud-sdk[claude]
Report the new version after upgrade.
If using local mode, also update crawl4ai:
Check current config mode: cat ~/.crawl4ai/claude_config.json
If mode is "local":
pip3 install --upgrade crawl4ai
Report summary: Tell the user what was updated and whether a Claude Code restart is needed (restart is needed if the plugin version changed).
npx claudepluginhub unclecode/crawl4ai-cloud-sdk --plugin crawl4aiUpgrades @mendable/firecrawl-js SDK and migrates from v0/v1 to v2 API, fixing crawlUrl, scrapeUrl, async methods, and extract schemas.
Checks if the bopen-tools plugin is up to date by comparing local and GitHub versions. Returns status (current, outdated, etc.) and suggests update commands. Fast (~70ms).
Upgrades Claude Code plugins by aligning skills, hooks, and patterns with latest capabilities and best practices. Use after updates, for modernization, or on user request.