4.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.
Skill Snapshot
| 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. OpenClaw Skills integration. |
| owner | hiich |
| repository | hiich/skillzmarket |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @hiich/skillzmarket |
| last updated | Feb 7, 2026 |
Maintainer

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 keywordinfo <slug>- Get skill details by slugcall <slug> <json>- Call a skill with automatic x402 paymentdirect <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
apiKeyas the standard config field for skill credentials. This maps to theSKILLZ_PRIVATE_KEYenvironment 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 paymentsSKILLZ_API_URL- API endpoint (default: https://api.skillz.market)
@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:
Option 1: OpenClaw Config (Recommended)
Add to ~/.openclaw/openclaw.json:
{
"skills": {
"entries": {
"skillzmarket": {
"apiKey": "0xYOUR_PRIVATE_KEY"
}
}
}
}
Why
apiKey? OpenClaw usesapiKeyas 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
- Skills are registered on the Skillz Market API
- When you call a skill, the CLI looks up the skill's endpoint and price
- The x402 payment protocol automatically handles USDC payments on Base
- You receive the skill's response
Environment Variables
SKILLZ_PRIVATE_KEY- Your wallet private key for payments (required forcallanddirect)SKILLZ_API_URL- Override the API URL (default:https://api.skillz.market)
Links
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.
