Skill

/crawl4ai:update

Check for and apply updates to the Crawl4AI plugin and SDK.

From crawl4ai
Install
1
Run in your terminal
$
npx claudepluginhub unclecode/crawl4ai-cloud-sdk --plugin crawl4ai
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

/crawl4ai:update

Check for and apply updates to the Crawl4AI plugin and SDK.

Instructions

  1. Check current versions:

    • Read the installed plugin version: cat ~/.claude/plugins/cache/crawl4ai-claude-plugins/crawl4ai/*/. claude-plugin/plugin.json 2>/dev/null and extract the version field.
    • Check the installed SDK version: python3 -c "import crawl4ai_cloud; print(crawl4ai_cloud.__version__)"
    • If the SDK is not installed, note that.
  2. Check for plugin updates: Run:

    /plugin marketplace update crawl4ai-claude-plugins
    

    This refreshes the marketplace catalog from the remote repository.

  3. 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
    
  4. Update the SDK: Run:

    pip3 install --upgrade crawl4ai-cloud-sdk[claude]
    

    Report the new version after upgrade.

  5. If using local mode, also update crawl4ai: Check current config mode: cat ~/.crawl4ai/claude_config.json If mode is "local":

    pip3 install --upgrade crawl4ai
    
  6. Report summary: Tell the user what was updated and whether a Claude Code restart is needed (restart is needed if the plugin version changed).

Similar Skills
cache-components

Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). **PROACTIVE ACTIVATION**: Use this skill automatically when working in Next.js projects that have `cacheComponents: true` in their next.config.ts/next.config.js. When this config is detected, proactively apply Cache Components patterns and best practices to all React Server Component implementations. **DETECTION**: At the start of a session in a Next.js project, check for `cacheComponents: true` in next.config. If enabled, this skill's patterns should guide all component authoring, data fetching, and caching decisions. **USE CASES**: Implementing 'use cache' directive, configuring cache lifetimes with cacheLife(), tagging cached data with cacheTag(), invalidating caches with updateTag()/revalidateTag(), optimizing static vs dynamic content boundaries, debugging cache issues, and reviewing Cache Component implementations.

138.5k
Stats
Parent Repo Stars3
Parent Repo Forks1
Last CommitFeb 11, 2026