Install
openclaw skills install message-tracker-pluginSends formatted tracked messages to Feishu channels via webhook with automatic retry on failure.
openclaw skills install message-tracker-plugin版本: 1.0.0 更新日期: 2026-04-30 状态: 已部署
message-tracker-plugin 是 message-tracker 的飞书插件模块,用于将追踪到的消息推送到飞书频道。
message-tracker-plugin/
├── SKILL.md # 本文件
└── node_modules/ # NPM依赖
本插件作为 message-tracker 的扩展,负责:
const TrackerPlugin = require('message-tracker-plugin');
// 初始化插件
const plugin = new TrackerPlugin({
webhook: '飞书Webhook地址',
secret: '签名密钥'
});
// 发送消息
plugin.send({
title: '消息标题',
content: '消息内容',
timestamp: Date.now()
});
| 参数 | 说明 | 必填 |
|---|---|---|
| webhook | 飞书机器人Webhook URL | 是 |
| secret | 签名密钥(用于加签) | 否 |