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

whatsapp-gotify-relayWhatsApp gotify relay 部署

Agent Skill

whatsapp-gotify-relay 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,326

周安装

95

GitHub Stars

公开资料未说明

下载量

745
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install whatsapp-gotify-relay

简介

用于辅助部署、云资源和容器运维,支持基础设施检查。

  • 适用于 Docker、日志管理和 webhook 验证等部署场景。
  • 作为 OpenClaw 与 Gotify 中继的桥梁,转发消息队列。
  • 安装前需确认 Docker 环境和网络访问权限。whatsapp-gotify-relay 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 建议使用 Unix 工具配合部署,注意日志输出格式兼容性。

SKILL.md

name
openclaw
description
Use when operating or extending this WhatsApp Gotify relay as the bridge to OpenClaw. Prefer Unix tools for Docker, logs, Gotify queue checks, webhook validation, and relay smoke tests.
version
1.0.0
metadata
openclaw
requires
bins
skillKey
openclaw
homepage
https://github.com/jr551/gotify-whatsapp-queue

OpenClaw

Use this skill when working on this repository as the WhatsApp bridge for OpenClaw.

Purpose

This project sits between WhatsApp and OpenClaw.

It does two directions of communication:

  1. OpenClaw sends outbound WhatsApp jobs through Gotify.
  2. The relay sends inbound WhatsApp events and connection status back to OpenClaw through webhooks.

Bridge model

Outbound path

OpenClaw posts JSON into the Gotify outbox application:

{
  "type": "send",
  "to": "+12025550101",
  "text": "hello from openclaw"
}

The relay polls that outbox, sends to WhatsApp, deletes the queue item on success, and emits a send_result.

Inbound path

OpenClaw receives webhook JSON from the relay.

Webhook event types:

  • conversation
  • send_result
  • status

Only meaningful WhatsApp activity should produce conversation events. History sync, protocol chatter, and other Baileys internals should stay filtered out.

Payload shape

The relay should keep payloads flat and readable.

Conversation

{
  "type": "conversation",
  "relay": "whatsapp-gotify-relay",
  "direction": "inbound",
  "jid": "12025550101@s.whatsapp.net",
  "senderJid": "12025550101@s.whatsapp.net",
  "pushName": "John",
  "timestamp": 1776948451,
  "messageId": "ABC123",
  "text": "hello",
  "contentType": "text"
}

Send result

{
  "type": "send_result",
  "relay": "whatsapp-gotify-relay",
  "status": "sent",
  "requestId": 5544,
  "to": "12025550101@s.whatsapp.net",
  "messageId": "3EB0...",
  "error": null,
  "timestamp": "2026-04-23T12:48:56.415Z"
}

Status

{
  "type": "status",
  "relay": "whatsapp-gotify-relay",
  "connection": "open",
  "phase": "connected",
  "qr": null,
  "statusCode": null,
  "details": null,
  "timestamp": "2026-04-23T12:48:56.415Z"
}

If WhatsApp remains disconnected, the relay sends a status reminder every 3 hours by default.

Public relay env vars

The relay runtime env surface is:

  • PORT
  • APP_LOG_LEVEL
  • WHATSAPP_AUTH_DIR
  • WHATSAPP_PAIRING_NUMBER
  • WHATSAPP_SYNC_FULL_HISTORY
  • GOTIFY_BASE_URL
  • GOTIFY_EVENTS_APP_TOKEN
  • GOTIFY_OUTBOX_TOKEN
  • GOTIFY_OUTBOX_APPLICATION_ID
  • GOTIFY_POLL_INTERVAL_MS
  • GOTIFY_EVENTS_PRIORITY
  • GOTIFY_RESULTS_PRIORITY
  • WEBHOOK_URL
  • WEBHOOK_BEARER_TOKEN
  • WEBHOOK_TIMEOUT_MS
  • WEBHOOK_DISCONNECTED_INTERVAL_MS
  • RELAY_NAME

OpenClaw-side env concepts

On the OpenClaw side, the important configuration concepts are:

  • Gotify base URL
  • Gotify outbox application id
  • Gotify outbox write token
  • webhook shared secret or bearer token expected from the relay
  • relay name if multiple relays exist

Keep the names OpenClaw already uses if they exist. Do not rename OpenClaw env vars just to match the relay.

Preferred tools

Prefer Unix tools and simple shell commands:

  • rg
  • sed -n
  • npm test
  • docker compose ps
  • docker compose logs --tail=... connector
  • docker compose up -d --build connector
  • curl
  • git status --short

Common operations

Run tests

npm test

Rebuild the relay

docker compose up -d --build connector

Follow relay logs

docker compose logs -f connector

Inspect the outbox queue

curl -sS "${GOTIFY_BASE_URL}/application/${GOTIFY_OUTBOX_APPLICATION_ID}/message?token=${GOTIFY_OUTBOX_TOKEN}&limit=10"

Post a manual outbox send

curl -sS \
  -H 'Content-Type: application/json' \
  -d '{"title":"smoke-test","message":"{\"type\":\"send\",\"to\":\"447550002572\",\"text\":\"smoke test\"}","priority":5}' \
  "${GOTIFY_BASE_URL}/message?token=${GOTIFY_OUTBOX_APP_TOKEN}"

GOTIFY_OUTBOX_APP_TOKEN is an operator-side token for manually writing to the outbox app. It is not required by the relay runtime.

Guardrails

  • Keep Gotify and webhook payloads lean.
  • Do not dump raw Baileys payloads into Gotify.
  • Keep webhook and Gotify contracts aligned.
  • Update .env.example, README.md, and tests together when the contract changes.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.59%
按下载量换算675

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills