05u/jiuwu-message/SKILL.md
调用久吾消息网关HTTP接口给企业内部联系人发送消息。使用场景:(1) 需要向企业内部同事发送通知或提醒时,(2) 调用时传入接收人工号(code)、消息内容(text)和标题(title)
npx skillsauth add openclaw/skills jiuwu-messageInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
调用久吾消息网关HTTP接口发送消息。
消息网关服务器地址从环境变量 JIUWU_MESSAGE_GATEWAY_URL 读取,默认为 http://192.168.1.213:5000。
如需自定义,请配置环境变量,优先使用workspace/.env,其次使用OpenClaw根目录的.env
使用 scripts/send_message.py 脚本发送消息:
python scripts/send_message.py --code "1112" --text "测试消息" --title "测试标题"
参数说明:
--code 或 -c: 接收人工号,多个工号用英文逗号分隔(必填)--text 或 -t: 消息内容(必填)--title 或 -tt: 消息标题(可选)from scripts.send_message import send_message
result = send_message(
code="1112,1113", # 多个工号用英文逗号分隔
text="消息内容",
title="消息标题" # 可选
)
if result["success"]:
print("发送成功")
else:
print(f"发送失败: {result['message']}")
{JIUWU_MESSAGE_GATEWAY_URL}/api/MessageGateway/SendMessagePostaccept: text/plainContent-Type: application/json-patch+json{
"code": "工号,多个用英文逗号分隔",
"text": "消息内容",
"title": "消息标题(可选)"
}
{
"success": true,
"data": true,
"message": "请求成功"
}
{
"success": false,
"data": null,
"message": "错误信息"
}
tools
Use when the user wants to connect to, test, or use the McDonalds service at mcp.mcd.cn, including checking authentication, probing MCP endpoints, listing tools, or calling McDonalds MCP tools through a reusable local CLI.
development
Web scraping platform — Twitter/X data, Vinted marketplace, and general web scraping API
development
SlowMist AI Agent Security Review — comprehensive security framework for skills, repositories, URLs, on-chain addresses, and products (Claude Code version)
data-ai
去除中文文本中的 AI 写作痕迹,使其读起来自然。基于维基百科 AI 写作特征指南,检测 24 种 AI 模式。触发词:humanizer-cn、去除 AI 痕迹、去除 AI 写作痕迹、中文文本人性化。