OpenClaw Integration

ClawHub is a skill registry for OpenClaw agents. Scavio publishes four skills -- one per platform -- so you can install only what your agent needs. No wrappers, no glue code: set your API key, install the skill, and your agent can search immediately.

Available Skills

SkillPlatformInstall command
scavio-googleGoogle Searchclawhub install scavio-google
scavio-amazonAmazonclawhub install scavio-amazon
scavio-youtubeYouTubeclawhub install scavio-youtube
scavio-walmartWalmartclawhub install scavio-walmart

Installation

Install one skill or all four at once:

Bash
# Install a single skill
clawhub install scavio-google

# Install all Scavio skills
clawhub install scavio-google scavio-amazon scavio-youtube scavio-walmart

Configuration

All four skills read your Scavio API key from the SCAVIO_API_KEY environment variable. Set it once and every installed skill picks it up automatically.

Bash
export SCAVIO_API_KEY=sk_live_your_key_here

Get your API key from the Scavio Dashboard. Keys start with sk_live_ or sk_test_.

Usage

Once installed and configured, your OpenClaw agent can call the skills directly. Pass natural-language instructions -- the skill maps them to the right API call and returns structured JSON.

Google Search

Searches Google and returns titles, URLs, and content snippets. Supports news, images, and maps search types.

Bash
# Example agent prompt
"Search Google for the latest AI research papers from 2026"

Amazon

Searches Amazon products and returns titles, prices, ratings, and product URLs. Supports filtering by country and sorting options.

Bash
# Example agent prompt
"Find standing desks under $300 on Amazon"

YouTube

Searches YouTube videos and returns titles, channel names, view counts, and video URLs.

Bash
# Example agent prompt
"Search YouTube for LangChain tutorials from 2026"

Walmart

Searches Walmart products with prices, ratings, fulfillment options (delivery, pickup, free shipping), and stock status.

Bash
# Example agent prompt
"Find coffee makers with free shipping on Walmart"

Credit Costs

Each skill call consumes credits from your Scavio account. Credit costs are the same as direct API calls:

ModeCredits per call
Light (default)1
Full2

Free accounts start with 1,000 credits per month. See pricing for plan details.

Next Steps