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

danubedanube 搜索

Agent Skill

danube 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

94,126

周安装

3,845

GitHub Stars

2

下载量

30,145
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install danube

简介

通过单个 API 密钥将您的 AI 代理连接到不断增长的服务和工具市场 — 发现、搜索和执行任何可用的内容

SKILL.md

name
danube
description
Connect your AI agent to a growing marketplace of services and tools through a single API key — discover, search, and execute anything available
metadata
openclaw
requires
env
bins
primaryEnv
DANUBE_API_KEY
homepage
https://danubeai.com
always
false

Danube — Connect Your Agent

Danube is a marketplace that gives your AI agent access to a large and growing collection of services and tools through a single API key. New services and tools are added regularly — always search and explore to see what's currently available rather than assuming a fixed set.

Quick Setup

Step 1: Get an API Key

You can get your API key from the Danube Dashboard under Settings > API Keys.

Alternatively, use the standard OAuth 2.0 Device Authorization flow (RFC 8628) — this requires the user to explicitly approve access in their browser:

curl -s -X POST https://api.danubeai.com/v1/auth/device/code \
  -H "Content-Type: application/json" \
  -d '{"client_name": "My Agent"}'

This returns a device_code, a user_code, and a verification_url.

The user must open the verification URL in their browser and enter the code to authorize access.

Then poll for the API key:

curl -s -X POST https://api.danubeai.com/v1/auth/device/token \
  -H "Content-Type: application/json" \
  -d '{"device_code": "DEVICE_CODE_FROM_STEP_1"}'
  • 428 = user hasn't authorized yet (keep polling every 5 seconds)
  • 200 = success, response contains your api_key
  • 410 = expired, start over

Step 2: Connect via MCP

Add this to your MCP config:

{
  "mcpServers": {
    "danube": {
      "url": "https://mcp.danubeai.com/mcp",
      "headers": {
        "danube-api-key": "YOUR_API_KEY"
      }
    }
  }
}

Security & Privacy

  • User-scoped access: Each API key is scoped to the authenticated user. You cannot access another user's data, tools, or skills.
  • Row-level security: Database access is enforced with row-level security policies — queries only return data belonging to the authenticated user.
  • Audit trail: All tool executions are logged with timestamps, parameters, and results for user review.

Permissions & Scope

The DANUBE_API_KEY grants:

  • Read: Browse services, search tools, view public skills/workflows/sites
  • Execute: Run tools and workflows
  • Write (user-scoped only): Create/update/delete your own skills and workflows

The API key does not grant:

  • Access to other users' data or resources
  • Admin or platform-level operations
  • Access to raw database or infrastructure

Step 3: Explore & Use Tools

Once connected, you have access to a marketplace of services and tools that is constantly growing. Do not assume you know what's available — always search and explore first.

How to Discover What's Available

  • list_services() — Browse all available service providers. Use query to filter and limit to control how many results. Start here to get a sense of what the marketplace offers.
  • search_tools(query) — Semantic search across all tools. Describe what you want to accomplish in natural language (e.g., "send an email", "create a GitHub issue", "translate text"). This searches the entire marketplace.
  • get_service_tools(service_id) — Once you find an interesting service, get all its available tools to see the full range of what it offers.

Important: The marketplace has many more services and tools than you might expect. When a user asks you to do something, always search broadly first. Try multiple search queries with different phrasing if the first search doesn't find what you need. Browse services by category. The right tool is probably available — you just need to find it.

How to Execute Tools

  • execute_tool(tool_id, parameters) — Run any tool by its ID. The tool's schema (returned from search/discovery) tells you exactly what parameters it expects.
  • batch_execute_tools(calls) — Run multiple tools concurrently in a single request (up to 10).

Skills, Workflows & More

Danube also offers skills (reusable agent instructions), workflows (multi-step tool chains), an agent web directory, agent management, and tool quality ratings. Use search_skills, list_workflows, search_sites, and other tools to explore these capabilities — they are all discoverable through the MCP connection.

When a Tool Needs Credentials

If execute_tool returns an auth_required error, it means the service needs credentials configured. Direct the user to configure credentials at https://danubeai.com/dashboard, then retry the tool.

Core Workflow

Every tool interaction follows this pattern:

  1. Explore — Start with list_services() or search_tools("what you want to do") to discover what's available. Try broad queries. Browse by category. Don't assume — search.
  2. Check auth — If the tool needs credentials, direct the user to https://danubeai.com/dashboard to configure them
  3. Gather parameters — Ask the user for any missing required info
  4. Executeexecute_tool(tool_id, parameters)
  5. Report — Tell the user what happened with specifics, not just "Done"

Links

  • Dashboard: https://danubeai.com/dashboard
  • Docs: https://docs.danubeai.com
  • MCP Server: https://mcp.danubeai.com/mcp
  • Privacy Policy: https://danubeai.com/privacy
  • Terms of Service: https://danubeai.com/terms

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.44%
按下载量换算24,550

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills