# ClawHub Skill Scraper (`jungle_synthesizer/clawhub-skill-content-scraper`) Actor

Scrape AI agent skills from the ClawHub marketplace. Extracts SKILL.md definitions, metadata, stats, and changelogs for 8,000+ OpenClaw skills.

- **URL**: https://apify.com/jungle\_synthesizer/clawhub-skill-content-scraper.md
- **Developed by:** [BowTiedRaccoon](https://apify.com/jungle_synthesizer) (community)
- **Categories:** AI, Developer tools, Other
- **Stats:** 12 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## ClawHub Skill Scraper

Scrape AI agent skill data from the [ClawHub marketplace](https://clawhub.ai). Extract skill definitions (SKILL.md), metadata, download stats, install counts, star ratings, changelogs, and author information for 8,000+ skills in the [OpenClaw](https://openclaw.org) ecosystem.

***

### ClawHub Skill Scraper Features

- Extracts full SKILL.md content from each skill's ClawHub package bundle
- Collects marketplace stats: downloads, installs, stars, comments, version count
- Two modes: metadata-only (fast) or full content with SKILL.md files
- Handles 8,000+ skills with automatic pagination and rate limiting
- Merges data from the ClawHub listing API and the ClawHub package download
- Outputs structured JSON with 20+ fields per skill record

***

### Who Uses ClawHub Skill Data?

- **AI tool directories** — Index and categorize AI agent skills for discovery platforms
- **Developer analytics** — Track skill adoption trends, download velocity, and popularity across the OpenClaw ecosystem
- **Competitive research** — Monitor new skill releases, author activity, and marketplace growth
- **Dataset builders** — Collect SKILL.md definitions to train or evaluate AI agents on real-world skill specifications
- **Market research** — Analyze the AI agent skill marketplace for investment or product positioning

***

### How the ClawHub Scraper Works

1. **List skills** — Paginates through the ClawHub listing API to collect skill metadata and marketplace stats
2. **Resolve authors** — Owner handles are already present on each listing record
3. **Download SKILL.md** — Pulls the skill's ZIP bundle from ClawHub's own package download endpoint and extracts the full skill definition and package metadata from it

Steps 2 and 3 only run when `downloadContent` is enabled. With it disabled, the scraper returns metadata only and runs significantly faster.

***

### Input

```json
{
  "maxItems": 50,
  "downloadContent": true
}
```

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| maxItems | integer | 50 | Maximum number of skills to scrape. Set to 0 for unlimited. |
| downloadContent | boolean | true | Fetch SKILL.md content from ClawHub's package ZIP bundle. When disabled, only ClawHub API metadata is collected (faster). |

***

### ClawHub Scraper Output Fields

```json
{
  "slug": "web-search",
  "displayName": "Web Search",
  "version": "1.2.0",
  "summary": "Search the web and return structured results",
  "author": "openclaw",
  "tags": { "latest": "1.2.0", "stable": "1.1.5" },
  "downloads": 12450,
  "installsAllTime": 8320,
  "installsCurrent": 1540,
  "stars": 89,
  "comments": 12,
  "versions": 8,
  "changelog": "Added timeout configuration and retry logic",
  "skillMd": "# Web Search\n\nSearch the web using...",
  "supportingFiles": [],
  "ownerId": "usr_abc123",
  "createdAt": "2024-06-15T10:30:00Z",
  "updatedAt": "2025-02-20T14:15:00Z",
  "publishedAt": "2025-02-20T14:15:00Z"
}
```

| Field | Type | Description |
|-------|------|-------------|
| slug | string | Unique skill identifier (URL slug) |
| displayName | string | Human-readable skill name |
| version | string | Latest published version |
| summary | string | Short skill description |
| author | string | Skill author from skill.yaml metadata |
| tags | object | Tag-to-version mapping (e.g. latest, stable) |
| downloads | number | Total download count |
| installsAllTime | number | Lifetime install count |
| installsCurrent | number | Current active installs |
| stars | number | Star/favorite count |
| comments | number | Comment count |
| versions | number | Total published version count |
| changelog | string | Latest version changelog text |
| skillMd | string | Full SKILL.md file content |
| supportingFiles | array | Additional files in the skill package |
| ownerId | string | Internal owner identifier |
| createdAt | string | Skill creation timestamp (ISO 8601) |
| updatedAt | string | Last update timestamp (ISO 8601) |
| publishedAt | string | Latest version publish timestamp (ISO 8601) |

***

### FAQ

#### How do I scrape all skills from ClawHub?

Set `maxItems` to `0` and `downloadContent` to `true`. The ClawHub Skill Scraper will paginate through the full marketplace and download SKILL.md content for every skill.

#### How much does the ClawHub Skill Scraper cost to run?

A full run with content download for all 8,000+ skills uses approximately 256 MB of memory and takes under an hour. Metadata-only mode is significantly faster and cheaper.

#### What is a SKILL.md file?

SKILL.md is the standard definition file for AI agent skills in the OpenClaw ecosystem. It describes what the skill does, its inputs, outputs, and configuration. The ClawHub Skill Scraper extracts these files directly from each skill's ClawHub package bundle.

#### Can I scrape ClawHub without downloading SKILL.md content?

Yes. Set `downloadContent` to `false` to collect only marketplace metadata (names, stats, tags) without fetching the package bundle. This mode is much faster and skips the download phase entirely.

***

### Need More Features?

Need custom fields, filters, or a scraper for a different AI marketplace? [File an issue](https://console.apify.com/actors/issues) or get in touch.

### Why Use the ClawHub Skill Scraper?

- **Complete** — Combines ClawHub marketplace data with full SKILL.md content from the package bundle in a single run
- **Flexible** — Metadata-only mode for fast runs, full mode for complete skill definitions
- **Reliable** — Rate limiting, retry logic, and graceful error handling for 8,000+ skill records

***

**Further reading:** [Track Your Competitors Across 7 App Stores From One Toolkit](https://orbtop.com/articles/track-competitors-across-app-stores/)

# Actor input Schema

## `sp_intended_usage` (type: `string`):

What will this data feed? E.g. lead lists, KYB checks, price tracking.

## `sp_improvement_suggestions` (type: `string`):

Provide any feedback or suggestions for improvements.

## `sp_contact` (type: `string`):

We'll personally help with your use case. No spam.

## `maxItems` (type: `integer`):

Maximum number of skills to scrape. Set to 0 for unlimited.

## `downloadContent` (type: `boolean`):

Whether to fetch SKILL.md content from ClawHub's skill ZIP bundle. When disabled, only metadata from the ClawHub listing API is collected (much faster).

## Actor input object example

```json
{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "maxItems": 50,
  "downloadContent": true
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "sp_intended_usage": "Describe your intended use...",
    "sp_improvement_suggestions": "Share your suggestions here...",
    "sp_contact": "Share your email here...",
    "maxItems": 50,
    "downloadContent": true
};

// Run the Actor and wait for it to finish
const run = await client.actor("jungle_synthesizer/clawhub-skill-content-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "sp_intended_usage": "Describe your intended use...",
    "sp_improvement_suggestions": "Share your suggestions here...",
    "sp_contact": "Share your email here...",
    "maxItems": 50,
    "downloadContent": True,
}

# Run the Actor and wait for it to finish
run = client.actor("jungle_synthesizer/clawhub-skill-content-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "sp_intended_usage": "Describe your intended use...",
  "sp_improvement_suggestions": "Share your suggestions here...",
  "sp_contact": "Share your email here...",
  "maxItems": 50,
  "downloadContent": true
}' |
apify call jungle_synthesizer/clawhub-skill-content-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=jungle_synthesizer/clawhub-skill-content-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/W1PR1axlovQFELpCT/builds/XHt2xBoacg3PeBp5b/openapi.json
