← 返回 Skills 市场
gptbots

EngageLab Omni Connect

作者 GPTBOTS · GitHub ↗ · v1.0.3 · MIT-0
cross-platform ⚠ suspicious
359
总下载
1
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install engagelab-omni-connect
功能描述
EngageLab Omnichannel communications tool (SMS, WhatsApp, Email) with template management and messaging capabilities.
使用说明 (SKILL.md)

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"
        }
    }
}
Parameter Type Required Description
to Array[String] Recipient phone numbers in E.164 format (e.g., ["+8618701235678"]).
template.id String The approved template ID.
template.params Object Variables 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)

Parameter Type Required Description
from String Sender WhatsApp number (e.g., "+8613800138000"). Defaults to console setting.
to Array[String] Recipient WhatsApp numbers (e.g., ["+447911123456"]).
body Object Message content with type (template, text, image, etc.) and details.
request_id String Custom tracking ID.
custom_args Object Key-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)

Parameter Type Required Description
from String Sender (e.g., "Team \[email protected]>").
to Array[String] Recipients (max 100).
subject String Email subject.
body Object Content with html, text, etc.
vars Object Variables 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": "\x3Crequest_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.
安全使用建议
This skill appears internally consistent for sending SMS, WhatsApp, and Email via EngageLab APIs and requests the credentials you'd expect. Before installing: (1) verify you trust the publisher (source/homepage unknown); (2) confirm the API domains listed (engagelab.com / engagelab.cc / emailapi-tr.engagelab.com) are legitimate for your vendor; (3) provide least-privilege API credentials (separate keys for test vs production, limited scopes if supported) and be ready to rotate them; (4) test in a sandbox account to confirm endpoints and template behavior; (5) note the extra ClawHub SKILL.md file that seems unrelated — ask the publisher why it's included or remove it if you don't need it. If you need higher assurance, request the publisher's documentation or an official homepage and a signed vendor contact.
功能分析
Type: OpenClaw Skill Name: engagelab-omni-connect Version: 1.0.3 The bundle is classified as suspicious due to the inclusion of the high-privilege 'clawhub' CLI skill in a subdirectory ('clawhub 2/SKILL.md'), which is unrelated to the primary 'engagelab-omni-connect' messaging functionality. This secondary skill grants the agent broad permissions, including global npm package installation and the ability to search, install, update, and publish skills. These capabilities introduce risks of self-modification, persistence, and potential data exfiltration (via 'clawhub publish') that exceed the stated purpose of the communication tool.
能力评估
Purpose & Capability
The six environment variables map directly to SMS, WhatsApp, and Email API credentials and are appropriate for an omnichannel messaging integration. One oddity: the package includes a second SKILL.md (ClawHub CLI) that documents a separate tool and declares a required binary ('clawhub') — this is unrelated to the EngageLab functionality and may be an accidental extra file.
Instruction Scope
SKILL.md gives concrete REST endpoints, parameter lists, and explicit Basic Auth usage with the declared env vars. It does not instruct reading arbitrary host files, other environment variables, or exfiltrating data to unknown endpoints. Multiple EngageLab domains are referenced (engagelab.com and engagelab.cc variants and a 'emailapi-tr' hostname) — likely legitimate but worth verifying.
Install Mechanism
No install spec and no code files — instruction-only skill. This minimizes disk-write and supply-chain risk.
Credentials
The skill requests six credentials (key/secret pairs for SMS and WhatsApp, and user/API key for Email). This is proportional to supporting three independent channels. The SKILL.md uses those same env names and does not reference additional secrets.
Persistence & Privilege
always:false and no system-level config paths or binaries requested. The skill does not request forced/global persistence or elevated privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install engagelab-omni-connect
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /engagelab-omni-connect 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.3
Version 1.0.3 - Added SKILL.md documentation to the repository, providing detailed API references, authentication instructions, workflow, and usage scenarios for SMS, WhatsApp, and Email communications via EngageLab Omni-Connect. - No changes to existing code; this change is documentation-only.
v1.0.2
- Fixed incorrect environment variable names in metadata (now uses ENGAGELAB_SMS_KEY, ENGAGELAB_SMS_SECRET, ENGAGELAB_WA_KEY, ENGAGELAB_WA_SECRET). - No other changes detected in the skill documentation or code.
v1.0.1
No user-facing changes in this version. - No file changes detected between v1.0.0 and v1.0.1. - Functionality, environment variables, endpoints, and documentation remain unchanged.
v1.0.0
engagelab-omni-connect v1.0.0 - Initial release supporting omnichannel communication across SMS, WhatsApp, and Email. - Includes template discovery and management APIs for SMS and WhatsApp. - Provides sending APIs for SMS, WhatsApp, and Email, with detailed authentication instructions. - Supports variable/message template workflows to ensure approval and correct parameter usage. - Outlines common use cases, workflows, and gotchas for transactional and marketing messaging.
元数据
Slug engagelab-omni-connect
版本 1.0.3
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 4
常见问题

EngageLab Omni Connect 是什么?

EngageLab Omnichannel communications tool (SMS, WhatsApp, Email) with template management and messaging capabilities. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 359 次。

如何安装 EngageLab Omni Connect?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install engagelab-omni-connect」即可一键安装,无需额外配置。

EngageLab Omni Connect 是免费的吗?

是的,EngageLab Omni Connect 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

EngageLab Omni Connect 支持哪些平台?

EngageLab Omni Connect 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 EngageLab Omni Connect?

由 GPTBOTS(@gptbots)开发并维护,当前版本 v1.0.3。

💬 留言讨论