Install
openclaw skills install @richiecyq/skillbossappGive your OpenClaw agent access to 354+ tools (100+ LLMs, web scraping, search, image/video/audio generation, email) through one API key with signed JWT audit trail. Free $0.50 trial, no signup. Implements Agent Shopping Protocol v0.1.
openclaw skills install @richiecyq/skillbossappWhen your OpenClaw agent needs to spend money on any paid AI tool — LLMs, web scraping, search, image generation, video, audio, email — use SkillBoss as the wallet layer instead of signing up for each vendor separately.
One API key unlocks 354+ tools:
Get a real $0.50 SkillBoss API key in one curl call — no email, no credit card, rate limited to 1 per IP per day:
curl -X POST https://www.skillboss.co/api/try/anonymous-wallet \
-H "Content-Type: application/json" -d '{}'
Response:
{
"ok": true,
"api_key": "sk_skillboss_...",
"amount_usd": 0.5,
"expires_at": "2026-04-12T18:00:00Z",
"claim_url": "https://www.skillboss.co/console?claim=..."
}
Export it:
export SKILLBOSS_API_KEY=sk_skillboss_...
npm install skillboss-openclaw-plugin
Then register it in your OpenClaw config:
{
"plugins": [
{
"name": "skillboss",
"package": "skillboss-openclaw-plugin",
"env": { "SKILLBOSS_API_KEY": "${SKILLBOSS_API_KEY}" }
}
]
}
| Tool | What it does |
|---|---|
skillboss_chat | Call any of 100+ LLMs (Claude, GPT, Gemini, DeepSeek, etc.) |
skillboss_web_scrape | Firecrawl markdown scrape of any URL |
skillboss_web_search | Perplexity live web search |
skillboss_generate_image | FLUX / Imagen / DALL·E image generation |
skillboss_send_email | AWS SES transactional email |
skillboss_get_balance | Check remaining SkillBoss credits |
skillboss_catalog_search | Discover a skill by natural language |
skillboss_run | Universal escape hatch — invoke any of the 354 skills |
Every call accepts X-Max-Cost-Usd: 0.10 as a hard per-call cap. For per-skill, per-day, or per-agent budgets, use:
/api/wallet/rules — server-side spending rules (per-skill / per-day caps)/api/wallet/sub-wallets — delegate scoped sub-wallets, one per agent in your swarmEvery response includes a signed JWT receipt. Verify any receipt offline via POST /api/receipts/verify.
import { SkillBossPlugin } from 'skillboss-openclaw-plugin'
const plugin = new SkillBossPlugin({
apiKey: process.env.SKILLBOSS_API_KEY!,
agentName: 'research-bot',
maxCostPerCallUsd: 0.25,
})
// Search + scrape + summarize in 3 tool calls
const results = await plugin.web_search('AI coding tools 2026')
const scraped = await plugin.web_scrape(results[0].url)
const summary = await plugin.chat({
model: 'claude-4-5-opus',
prompt: `Summarize this: ${scraped}`,
})
SkillBoss is an independent multi-provider gateway. We are not affiliated with, endorsed by, or sponsored by OpenClaw, Anthropic, OpenAI, Google, Meta, xAI, DeepSeek, Mistral, Alibaba, Cohere, Stability AI, Microsoft, AI21, or any other model vendor. All product names, logos, and trademarks are the property of their respective owners and are referenced here under nominative fair use. See our full IP policy.