npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

openclaw-plugin-crw

v0.2.0

Published

CRW web scraping plugin for OpenClaw — scrape, crawl, and map websites

Readme

openclaw-plugin-crw

npm version License: MIT

CRW web scraping plugin for OpenClaw. Gives your AI agents the ability to scrape, crawl, and map websites.

Installation

openclaw plugins install openclaw-plugin-crw

Setup — Pick One

Option A: Cloud (fastcrw.com) — Quickest Start

No server to install. Sign up at fastcrw.com and get 500 free credits to start scraping:

{
  "plugins": {
    "crw": {
      "apiKey": "crw_live_..."
    }
  }
}

That's it — cloud is the default. Your agents can now scrape, crawl, and map any website.

Option B: Self-hosted with binary (free, no limits)

Single binary, ~15 MB download, ~6 MB idle RAM. No Docker needed.

curl -fsSL https://raw.githubusercontent.com/us/crw/main/install.sh | bash
crw  # starts on http://localhost:3000
{
  "plugins": {
    "crw": {
      "apiUrl": "http://localhost:3000"
    }
  }
}

Option C: Self-hosted with Docker

docker run -d -p 3000:3000 ghcr.io/us/crw:latest
{
  "plugins": {
    "crw": {
      "apiUrl": "http://localhost:3000"
    }
  }
}

Tools

| Tool | Description | |------|-------------| | crw_scrape | Scrape a single URL and get clean markdown | | crw_crawl | BFS crawl a website, collect content from multiple pages | | crw_map | Discover all URLs on a website via sitemap + link traversal |

How It Works

Once installed and configured, your OpenClaw agents use the CRW tools automatically:

Scrape a page

User (via WhatsApp/Telegram/Discord): "Summarize this article: https://example.com/blog/post"

Agent uses crw_scrape → gets clean markdown → summarizes → responds.

Crawl an entire site

User: "Research everything on docs.example.com"

Agent uses crw_crawl → discovers and scrapes all pages → synthesizes findings → responds.

Discover site structure

User: "What pages does example.com have?"

Agent uses crw_map → returns all discovered URLs via sitemap + link traversal.

Example: URL Scraper Bot

A simple OpenClaw agent that scrapes any URL users send:

  1. User sends a URL via WhatsApp/Telegram
  2. Agent detects the URL and calls crw_scrape
  3. CRW fetches the page (using fastcrw.com cloud or your local instance)
  4. Agent receives clean markdown — no HTML noise, no nav/footer
  5. Agent summarizes and replies

With fastcrw.com, no infrastructure needed — just plug in your API key and go.

Compared to Firecrawl Plugin

| Feature | CRW Plugin | Firecrawl Plugin | |---------|-----------|-----------------| | Cloud option | fastcrw.com | firecrawl.dev | | Self-hosted | Yes (single binary, ~6 MB) | Complex (5+ containers) | | API key required | No (self-hosted) | Yes (always) | | Idle RAM | ~6 MB | ~500 MB+ | | Avg latency | 833ms | 4,600ms | | Cost (self-hosted) | $0 | $0 but heavy infra |

License

MIT