BeClaude

crawl4ai

New
Community RegistryGeneralby alexjx

Web crawler that converts URLs to clean markdown for LLM consumption. Use when user wants to crawl a webpage, extract web content, convert URL to markdown, or scrape website content for AI processing.

Community PluginView Source

Overview

Custom skills, commands, and agents for Claude Code.

Structure

code
.claude/
  commands/       # Slash commands (*.md files)
agents/           # Agent configurations
skills/           # Custom skills

Usage

Commands

Place .md files in .claude/commands/. Each file becomes a slash command.

Example: .claude/commands/review.md creates the /review command.

Skills

Skills extend Claude's capabilities with specialized knowledge and workflows.

To install skills, run the bundled installer:

bash
./install.sh

It copies the skills/ tree into .agents/skills/ and recreates .claude/skills as a symlink to the installed copy.

  • agent-harness - Orchestrate multi-session work with persistent state tracking
  • commit - Create atomic commits with conventional commit formatting
  • execute-plan - Execute a written implementation plan with dependency analysis and verification
  • handover - Consolidate multi-step context into an executable handover document for coding agents, external tool agents, or human operators

Agents

Agent configurations for specialized task handling.

Install & Usage

1
Create the skills directory
mkdir -p .claude/skills
2
Download the skill file
mkdir -p .claude/skills && curl -o .claude/skills/crawl4ai.md https://raw.githubusercontent.com/alexjx/skills/main/SKILL.md
3
Invoke in Claude Code
/crawl4ai
View source on GitHub

Frequently Asked Questions

What is crawl4ai?

Web crawler that converts URLs to clean markdown for LLM consumption. Use when user wants to crawl a webpage, extract web content, convert URL to markdown, or scrape website content for AI processing.

How to install crawl4ai?

To install crawl4ai, create the .claude/skills directory in your project, then run the curl command to download the skill file. Once installed, invoke it in Claude Code with /crawl4ai.

What is crawl4ai best for?

crawl4ai is a community categorized under General. Created by alexjx.