skills$openclaw/skillzmarket
hiich4.0k

by hiich

skillzmarket – OpenClaw Skill

skillzmarket is an OpenClaw Skills integration for data analytics workflows. Search and call monetized AI skills from Skillz Market with automatic USDC payments on Base. Use when the user wants to find paid AI services, call external skills with cryptocurrency payments, or integrate with the Skillz Market ecosystem.

4.0k stars6.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameskillzmarket
descriptionSearch and call monetized AI skills from Skillz Market with automatic USDC payments on Base. Use when the user wants to find paid AI services, call external skills with cryptocurrency payments, or integrate with the Skillz Market ecosystem. OpenClaw Skills integration.
ownerhiich
repositoryhiich/skillzmarket
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @hiich/skillzmarket
last updatedFeb 7, 2026

Maintainer

hiich

hiich

Maintains skillzmarket in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
_meta.json
453 B
package.json
678 B
README.md
2.2 KB
SKILL.md
1.9 KB
skillz-call.sh
526 B
skillz-cli.ts
4.7 KB
SKILL.md

name: skillzmarket description: Search and call monetized AI skills from Skillz Market with automatic USDC payments on Base. Use when the user wants to find paid AI services, call external skills with cryptocurrency payments, or integrate with the Skillz Market ecosystem. metadata: {"openclaw":{"requires":{"bins":["npx"],"env":["SKILLZ_PRIVATE_KEY"]},"primaryEnv":"SKILLZ_PRIVATE_KEY"}}

Skillz Market

Search and call monetized AI skills with automatic cryptocurrency payments via x402.

Quick Start

List all available skills:

npx tsx {baseDir}/skillz-cli.ts list

Search for skills:

npx tsx {baseDir}/skillz-cli.ts search "echo"

Get skill details:

npx tsx {baseDir}/skillz-cli.ts info "echo-service"

Call a skill (requires SKILLZ_PRIVATE_KEY):

npx tsx {baseDir}/skillz-cli.ts call "echo-service" '{"message":"hello"}'

Commands

  • list [--verified] - List all available skills (optionally filter by verified only)
  • search <query> - Search for skills by keyword
  • info <slug> - Get skill details by slug
  • call <slug> <json> - Call a skill with automatic x402 payment
  • direct <url> <json> - Call any x402-enabled endpoint directly

Configuration

Your wallet private key is required for x402 payments. Set it in OpenClaw config (~/.openclaw/openclaw.json):

{
  "skills": {
    "entries": {
      "skillzmarket": {
        "apiKey": "0xYOUR_PRIVATE_KEY"
      }
    }
  }
}

Note: OpenClaw uses apiKey as the standard config field for skill credentials. This maps to the SKILLZ_PRIVATE_KEY environment variable that the skill uses internally.

Alternatively, set the environment variable directly:

export SKILLZ_PRIVATE_KEY=0x...

Environment Variables

  • SKILLZ_PRIVATE_KEY - Wallet private key for x402 payments
  • SKILLZ_API_URL - API endpoint (default: https://api.skillz.market)
README.md

@skillzmarket/openclaw-skill

OpenClaw skill for calling monetized AI skills from the Skillz Market with automatic cryptocurrency payments.

Installation

Via ClawHub (recommended)

clawhub install skillzmarket

Via npx add-skill

npx add-skill github:skillzmarket/skill

Via openskills

npx openskills install skillzmarket/skill

Manual installation

git clone https://github.com/skillzmarket/skill
cp -r skill ~/.openclaw/skills/skillzmarket
cd ~/.openclaw/skills/skillzmarket && npm install

Configuration

Your wallet private key is required for making x402 payments. Choose one of these methods:

Add to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "skillzmarket": {
        "apiKey": "0xYOUR_PRIVATE_KEY"
      }
    }
  }
}

Why apiKey? OpenClaw uses apiKey as the standard config field for skill credentials. It automatically maps to the skill's primary environment variable (SKILLZ_PRIVATE_KEY).

Option 2: Environment Variable

export SKILLZ_PRIVATE_KEY=0xYOUR_PRIVATE_KEY

Security Notes

  • Never commit your private key to version control
  • Use a dedicated wallet with limited funds for skill payments
  • The private key is used to sign x402 payment transactions on Base (USDC)

Usage

Search for skills

/skillzmarket search translate

Get skill details

/skillzmarket info echo

Call a skill (with automatic payment)

/skillzmarket call echo {"message": "hello"}

Call an endpoint directly

/skillzmarket direct https://skills.example.com/echo {"message": "hello"}

How it works

  1. Skills are registered on the Skillz Market API
  2. When you call a skill, the CLI looks up the skill's endpoint and price
  3. The x402 payment protocol automatically handles USDC payments on Base
  4. You receive the skill's response

Environment Variables

  • SKILLZ_PRIVATE_KEY - Your wallet private key for payments (required for call and direct)
  • SKILLZ_API_URL - Override the API URL (default: https://api.skillz.market)

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

Your wallet private key is required for x402 payments. Set it in OpenClaw config (`~/.openclaw/openclaw.json`): ```json { "skills": { "entries": { "skillzmarket": { "apiKey": "0xYOUR_PRIVATE_KEY" } } } } ``` > **Note**: OpenClaw uses `apiKey` as the standard config field for skill credentials. This maps to the `SKILLZ_PRIVATE_KEY` environment variable that the skill uses internally. Alternatively, set the environment variable directly: ```bash export SKILLZ_PRIVATE_KEY=0x... ```

FAQ

How do I install skillzmarket?

Run openclaw add @hiich/skillzmarket in your terminal. This installs skillzmarket into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/hiich/skillzmarket. Review commits and README documentation before installing.