Skip to main content
ClawHub is the public skill registry for OpenClaw, an open-source AI agent that runs locally on your machine. Parallel publishes four official skills on ClawHub that give OpenClaw access to web search, content extraction, deep research, and data enrichment via the Parallel CLI.
ClawHub does not currently support verified or “official” publisher accounts. The Parallel skills are published under @NormallyGaussian.

Available Skills

SkillDescription
parallel-searchAI-powered web search with domain filtering and date ranges
parallel-extractExtract clean markdown from URLs, PDFs, and JS-heavy sites
parallel-deep-researchMulti-source deep research with configurable processor tiers
parallel-enrichmentBulk data enrichment for companies, people, or products

Prerequisites

1

Install the Parallel CLI

Install the Parallel CLI:
curl -fsSL https://parallel.ai/install.sh | bash
2

Get your API key

Get your API key from Parallel and set it as an environment variable:
export PARALLEL_API_KEY="your-api-key"

Installation

First, install OpenClaw and ClawHub if you haven’t already:
# Install OpenClaw (recommended: run locally for security)
npm install -g openclaw@latest
openclaw gateway --port 18789 --bind loopback
openclaw dashboard  # start the chat interface

# Install ClawHub CLI
npm install -g clawhub
Then install the Parallel skills:
clawhub install parallel-search
clawhub install parallel-extract
clawhub install parallel-deep-research
clawhub install parallel-enrichment

Usage

Once installed, the skills are automatically available to OpenClaw. The agent will invoke them based on your messages:
  • Search — “Search the web for the latest AI funding news”
  • Extract — “Read this URL and summarize it: https://example.com/article
  • Deep Research — “Do a thorough investigation of the EV battery market”
  • Enrichment — “Find the CEO and annual revenue for each company in this list”
All skills use the Parallel CLI under the hood and support --json output for structured results.

Learn More