Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

skillbossappskillbossapp 搜索

Agent Skill

skillbossapp 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,203

周安装

90

GitHub Stars

公开资料未说明

下载量

713
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skillbossapp(skillbossapp 搜索)
来源仓库:https://github.com/richiecyq/skillbossapp
安装命令:
openclaw skills install skillbossapp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install skillbossapp

简介

通过带有签名 JWT 音频的一个 API 密钥,您的 OpenClaw 代理可以访问 354 多个工具(100 多个 LLM、网页抓取、搜索、图像/视频/音频生成、电子邮件)。

SKILL.md

name
skillboss
displayName
SkillBoss — The Wallet for AI Agents
description
Give 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.
version
0.1.1
author
SkillBoss
homepage
https://www.skillboss.co
license
MIT
tags
user-invocable
true
disable-model-invocation
false

SkillBoss — The Wallet for AI Agents

When 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:

  • 100+ LLMs: Claude 4.5 Opus, Claude 4.5 Haiku, GPT-5.4, Gemini 2.5 Pro, DeepSeek V3.2, Grok, Qwen Max, Llama 3, Perplexity Sonar Pro, and more.
  • Web scraping via Firecrawl.
  • Web search via Perplexity Sonar and LinkUp.
  • Image generation: FLUX 2 Pro, Imagen 4 Ultra, DALL·E 3, Stable Diffusion 3.5.
  • Video generation: Sora 2 Pro, Veo 3.1.
  • Audio: ElevenLabs multilingual TTS, OpenAI Whisper STT, MiniMax voice.
  • Email: AWS SES.
  • 354 more in the live catalog at <https://www.skillboss.co/api/catalog>.

Zero-signup trial (30 seconds)

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_...

Install the plugin

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}" }
    }
  ]
}

8 tools your agent now has

ToolWhat it does
skillboss_chatCall any of 100+ LLMs (Claude, GPT, Gemini, DeepSeek, etc.)
skillboss_web_scrapeFirecrawl markdown scrape of any URL
skillboss_web_searchPerplexity live web search
skillboss_generate_imageFLUX / Imagen / DALL·E image generation
skillboss_send_emailAWS SES transactional email
skillboss_get_balanceCheck remaining SkillBoss credits
skillboss_catalog_searchDiscover a skill by natural language
skillboss_runUniversal escape hatch — invoke any of the 354 skills

Budget safety (enterprise-ready)

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 swarm

Every response includes a signed JWT receipt. Verify any receipt offline via POST /api/receipts/verify.

Example: research + summarize

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}`,
})

Going further

Disclaimer

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.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.73%
按下载量换算540

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills