Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

engagelab-omni-connectEngagelab 全方位连接

Agent Skill

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

总安装

10,546

周安装

453

GitHub Stars

1

下载量

3,696
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install engagelab-omni-connect

简介

EngageLab 全渠道通信工具(短信、WhatsApp、电子邮件),具有模板管理和消息传递功能。

SKILL.md

name
engagelab-omni-connect
description
EngageLab Omnichannel communications tool (SMS, WhatsApp, Email) with template management and messaging capabilities.
metadata
openclaw
requires
env

EngageLab Omni-Connect

Instructions

You are a communication specialist. Choose the appropriate channel based on user needs:

  1. SMS: Used for sending short, urgent verification codes or notifications. Call POST /v1/sms/send.
  2. WhatsApp: Used for sending rich media or interactive messages. Call POST /v1/whatsapp/send.
  3. Email: Used for sending long reports or formal notifications. Call POST /v1/email/send.

Authentication

All API requests must include an Authorization header.

Format: Basic ${Base64(dev_key:dev_secret)}

  • SMS: Use ENGAGELAB_SMS_KEY and ENGAGELAB_SMS_SECRET.
  • WhatsApp: Use ENGAGELAB_WA_KEY and ENGAGELAB_WA_SECRET.
  • Email: Use ENGAGELAB_EMAIL_API_USER and ENGAGELAB_EMAIL_API_KEY.

API Definitions

Send SMS

  • Endpoint: https://smsapi.engagelab.com/v1/messages
  • Method: POST
  • Params: to, from,template

Send WhatsApp

  • Endpoint: https://wa.api.engagelab.cc/v1/messages
  • Method: POST
  • Params: to, from, body

Send Email

  • Endpoint: https://email.api.engagelab.cc/v1/mail/send or https://emailapi-tr.engagelab.com
  • Method: POST
  • Params: to, from, body

EngageLab SMS Template Skill

Product Summary

This skill enables the discovery of pre-configured SMS templates. It is an essential precursor to sending messages, as it provides the necessary template_id and the specific variable placeholders (e.g., {order_no}) required for the sending payload.

Base URL: https://smsapi.engagelab.com

APIs

1. List Template Configs

Retrieve all template configurations under the current account.

  • Method: GET
  • Path: /v1/template-configs
  • Auth: Required (Basic Auth)

2. Get Template Details

Retrieve detailed configuration for a specific template.

  • Method: GET
  • Path: /v1/template-configs/{templateId}
  • Auth: Required (Basic Auth)

Response Example

{
  "template_id": "123456789",
  "template_name": "Order Notification",
  "template_content": "Your order {order_no} has shipped.",
  "status": 2,
  "sign_name": "Company Name"
}

Workflow

  1. Identify Template: Search the list for the template matching the desired use case (e.g., "Verification").
  2. Examine Content: Check template_content to identify all variables inside curly braces {}.
  3. Verify Status: Ensure status is approved (typically 2) before attempting to send.

EngageLab SMS Sender Skill

Product Summary

EngageLab SMS allows developers to send transactional and marketing SMS via a simple REST API. All messages must be sent using pre-configured and approved templates.

Endpoint: POST https://smsapi.engagelab.com/v1/messages

Usage Scenarios

  • Sending verification codes (OTPs).
  • Sending transactional notifications (order updates, alerts).
  • Sending marketing messages.

API Reference

Headers

Content-Type: application/json
Authorization: Basic ${base64(dev_key:dev_secret)}

Request Body (JSON)

{
    "to": [
        "923700056581"
    ],
    "template": {
        "id": "1233",
        "params": {
            "code": "039487"
        }
    }
}
ParameterTypeRequiredDescription
toArray[String]Recipient phone numbers in E.164 format (e.g., ["+8618701235678"]).
template.idStringThe approved template ID.
template.paramsObjectVariables to substitute in the template (e.g., {"code": "1234"}).

Response (200 OK)

{
  "plan_id": "1972...",
  "total_count": 1,
  "accepted_count": 1,
  "message_id": "1972..."
}

Workflow

  1. Pull Template: Use engagelab-sms-template to get the template_id and required params.
  2. Collect Data: Get recipient numbers and variable values.
  3. Send: Construct the JSON payload and POST to the endpoint.
  4. Verify: Check accepted_count to ensure delivery acceptance.

Common Gotchas

  • Format: Always use E.164 format for to numbers.
  • Partial Success: 200 OK can still mean some recipients failed. Compare accepted_count with total_count.
  • Variables: If a variable is missing in params, the placeholder (e.g., {{name}}) is sent literally.

EngageLab WhatsApp Template Skill

Product Summary

This skill enables the management and discovery of pre-configured WhatsApp templates. It is an essential precursor to sending messages, as it provides the necessary template ID, name, language, category, components, and status. Templates must be approved before use.

Base URL: https://wa.api.engagelab.cc/v1

APIs

1. List Templates

Retrieve all templates under the current WhatsApp Business Account.

  • Method: GET
  • Path: /templates
  • Auth: Required (Basic Auth)
  • Params: name (optional, fuzzy match), language_code (optional), category (optional: AUTHENTICATION, MARKETING, UTILITY), status (optional: APPROVED, PENDING, REJECTED, etc.)

2. Get Template Details

Retrieve detailed configuration for a specific template.

  • Method: GET
  • Path: /templates/{template_id}
  • Auth: Required (Basic Auth)

3. Create Template

Add a new template for approval.

  • Method: POST
  • Path: /templates
  • Auth: Required (Basic Auth)
  • Body: JSON with name, language, category, components (array of HEADER, BODY, FOOTER, BUTTONS objects)

4. Update Template

Modify an existing template's components.

  • Method: PUT
  • Path: /templates/{templateId}
  • Auth: Required (Basic Auth)
  • Body: JSON with updated components

5. Delete Template

Remove a template (all language versions).

  • Method: DELETE
  • Path: /templates/{template_name}
  • Auth: Required (Basic Auth)

Response Example

[
  {
    "id": "406979728071589",
    "name": "code",
    "language": "zh_CN",
    "status": "APPROVED",
    "category": "OTP",
    "components": [
      {
        "type": "HEADER",
        "format": "text",
        "text": "Registration Verification Code"
      },
      {
        "type": "BODY",
        "text": "Your verification code is {{1}}, please enter it within 5 minutes."
      }
    ]
  }
]

Workflow

  1. Identify Template: Use List Templates to find matching templates by name, language, category, or status.
  2. Examine Content: Check components to identify placeholders (e.g., {{1}}) and required parameters.
  3. Verify Status: Ensure status is "APPROVED" before using for sending.
  4. Create/Update if Needed: Submit new or modified templates for Meta approval.
  5. Delete Unused: Remove templates to manage limits.

EngageLab WhatsApp Sender Skill

Product Summary

EngageLab WhatsApp allows developers to send transactional and marketing messages via a simple REST API. Supports template, text, image, audio, video, document, and sticker messages. Proactive sends limited to approved templates.

Endpoint: POST https://wa.api.engagelab.cc/v1/messages

Usage Scenarios

  • Sending verification codes (OTPs) using templates.
  • Delivering media-rich notifications (images, videos) in support or marketing.
  • Interactive replies (text, stickers) within 24-hour window.

API Reference

Headers

Content-Type: application/json
Authorization: Basic ${base64(dev_key:dev_secret)}

Request Body (JSON)

ParameterTypeRequiredDescription
fromStringSender WhatsApp number (e.g., "+8613800138000"). Defaults to console setting.
toArray[String]Recipient WhatsApp numbers (e.g., ["+447911123456"]).
bodyObjectMessage content with type (template, text, image, etc.) and details.
request_idStringCustom tracking ID.
custom_argsObjectKey-value pairs for callbacks.

Response (200 OK)

{
  "message_id": "cbggf4if6o9ukqaalfug",
  "request_id": "your-sendno-string"
}

Workflow

  1. Pull Template: Use WhatsApp template skill for ID and components.
  2. Collect Data: Get recipients, variables/media.
  3. Send: Construct payload and POST to endpoint.
  4. Verify: Check message_id for tracking.

Common Gotchas

  • Use approved templates for proactive sends.
  • Include international codes in numbers.
  • Media must meet format/size limits.
  • Variables must match template placeholders.

EngageLab Email Sender Skill

Product Summary

EngageLab Email allows developers to send transactional and marketing emails via a REST API. Supports regular sends, templates, calendar invites, and MIME formats. Personalization via variables and Handlebars.

Endpoint: POST https://email.api.engagelab.cc/v1/mail/send (or Turkey: https://emailapi-tr.engagelab.com)

Usage Scenarios

  • Sending personalized transactional emails (confirmations, alerts).
  • Bulk marketing campaigns with tracking.
  • Calendar invitations for events.

API Reference

Headers

Content-Type: application/json;charset=utf-8
Authorization: Basic ${base64(api_user:api_key)}

Request Body (JSON)

ParameterTypeRequiredDescription
fromStringSender (e.g., "Team <support@engagelab.com>").
toArray[String]Recipients (max 100).
subjectStringEmail subject.
bodyObjectContent with html, text, etc.
varsObjectVariables for substitution.

For templates: Use /v1/mail/sendtemplate with template_invoke_name.

Response (200 OK)

{
  "email_ids": ["1447054895514_15555555_32350_1350.sc-10_10_126_221-inbound0$111@qq.com"],
  "request_id": "<request_id>"
}

Workflow

  1. Prepare Content: Define subject, body, variables.
  2. Add Options: Attachments, tracking, send_mode.
  3. Send: POST to endpoint.
  4. Verify: Check email_ids/task_id.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

77.68%
按下载量换算2,871

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills