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

sooda-bridge苏达桥

Agent Skill

sooda-bridge 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,477

周安装

556

GitHub Stars

公开资料未说明

下载量

4,404
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sooda-bridge

简介

连接 Sooda 网络上的业务 AI 代理进行沟通。

  • 支持 travelwise、dineout 等特定代理交互。
  • 适合企业客户服务平台集成。sooda-bridge 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install sooda-bridge。
  • 需配置代理身份与访问权限。

SKILL.md

name
sooda-bridge
description
Connect to business AI agents on the Sooda network. Use when: user mentions Sooda, the Sooda network, or asks to talk to a Sooda agent by name (travelwise, dineout, support, helpdesk, procurebot, vendorbot). NOT for general queries — only when the user specifically wants to reach an agent through Sooda.
version
1.0.0
metadata
{ "clawdbot": { "emoji": "🔗", "requires": { "env": ["SOODA_API_KEY"], "bins": ["curl"] }, "primaryEnv": "SOODA_API_KEY" } }

Sooda Bridge

Send messages to business AI agents through the Sooda network.

First-Use Setup

Before sending any message, check if SOODA_API_KEY is set in the environment.

If SOODA_API_KEY IS set — skip to "Send a Message".

If SOODA_API_KEY is NOT set — sign up for a session key:

  1. Ask the user for their email address
  2. Run the signup call inline:
curl -s -X POST https://sooda.ai/api/v1/signup \
  -H "Content-Type: application/json" \
  -d '{"email":"USER_EMAIL_HERE"}'
  1. Parse the JSON response:
{
  "agent_id": "uuid",
  "agent_name": "user-a1b2c3d4",
  "api_key": "sk_...",
  "connected_agents": ["travelwise", "dineout", "support", "helpdesk", "procurebot", "vendorbot"]
}
  1. Hold the api_key value in memory as SOODA_API_KEY for this session
  2. Tell the user: "You're connected! To persist across sessions, run: export SOODA_API_KEY=sk_..."

Send a Message

Use this curl template to relay a message to any connected agent:

curl -s -X POST https://sooda.ai/api/v1/relay/AGENT_NAME \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $SOODA_API_KEY" \
  -H "X-Sooda-Context-ID: CONTEXT_ID_OR_OMIT" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "message/send",
    "params": {
      "message": {
        "role": "user",
        "parts": [{"type": "text", "text": "USER_MESSAGE_HERE"}]
      }
    }
  }'
  • Replace AGENT_NAME with the target agent (e.g. travelwise, helpdesk)
  • Replace USER_MESSAGE_HERE with the user's message
  • For the first message in a conversation, omit the X-Sooda-Context-ID header
  • For follow-up messages, include the context_id from the previous response

Response Parsing

The relay response is JSON:

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "status": "completed",
    "session_id": "uuid",
    "context_id": "uuid",
    "a2a_task_id": "uuid",
    "a2a_response": {
      "result": {
        "id": "...",
        "status": { "state": "completed" },
        "artifacts": [{
          "parts": [{"type": "text", "text": "The agent's reply text"}]
        }]
      }
    }
  }
}

Extract the agent's reply from .result.a2a_response.result.artifacts[0].parts[0].text.

Save the context_id from .result.context_id — pass it as X-Sooda-Context-ID on follow-ups to continue the conversation.

Status values

StatusMeaningAction
completedAgent respondedExtract text from a2a_response
workingAgent is still processingPoll for result (see below)
queuedAgent at capacity, message queuedPoll for result
failedDelivery failedShow error message to user

Error responses

Errors use JSON-RPC error format:

{
  "jsonrpc": "2.0",
  "id": 1,
  "error": { "code": -32600, "message": "description" }
}

Async Polling

If the status is working or queued, poll for the result using the session_id:

curl -s https://sooda.ai/api/v1/sessions/SESSION_ID/result \
  -H "Authorization: Bearer $SOODA_API_KEY"

Poll every 2-3 seconds until the response contains a completed result.

Multi-Turn Context Tracking

Every relay response includes a context_id. You MUST:

  1. Parse and store the context_id from the FIRST relay response to an agent
  2. Pass it as the X-Sooda-Context-ID header on EVERY follow-up to the same agent

If you do NOT pass the context ID, the follow-up creates a NEW conversation instead of continuing the existing one. ALWAYS pass the context ID for follow-ups.

Available Agents

  • helpdesk — Customer support helpdesk (orders, returns, refunds, shipping issues). Escalates to internal-ops for backend operations.
  • travelwise — AI travel booking agent (flights, hotels, activities)
  • dineout — AI restaurant booking agent (reservations, dining recommendations)
  • support — Customer support (orders, returns, help)
  • procurebot — B2B procurement agent (sourcing, quotes, purchase orders)
  • vendorbot — B2B vendor/supplier sales agent

More agents are added as partners join the network.

External Endpoints

URLMethodData SentPurpose
https://sooda.ai/api/v1/signupPOSTEmail, optional agent nameOne-time signup to get API key
https://sooda.ai/api/v1/relay/{agent}POSTJSON-RPC message with user textSend A2A message to a business agent
https://sooda.ai/api/v1/sessions/{id}/resultGETNone (Bearer token in header)Poll for async agent response

Security & Privacy

  • All communication uses HTTPS only. No plaintext HTTP requests.
  • Authentication via Bearer token (SOODA_API_KEY) in the Authorization header.
  • No local data storage — the API key is held in memory for the session only.
  • Message content is opaque to Sooda's relay layer; it is forwarded to the target agent as-is.
  • The API key scopes access to the registered agent's connections only.

Trust Statement

Sooda.ai is a third-party A2A relay platform. By using this skill, messages are sent through Sooda's infrastructure to business agents registered on the network. The SOODA_API_KEY controls which agents you can communicate with — it cannot access other users' data or agents outside your connection graph. Sooda does not store message content beyond delivery; see sooda.ai for full terms.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.89%
按下载量换算3,959

安全审计

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills