久吾消息网关

PassAudited by ClawScan on May 10, 2026.

Overview

This skill appears to do what it says—send internal company messages through a gateway—but users should verify the gateway, recipients, and content before using it for real or bulk notifications.

Use this skill only if the Jiuwu message gateway is trusted and correctly configured. Set JIUWU_MESSAGE_GATEWAY_URL for your environment, prefer HTTPS or a protected internal network, and double-check recipients and message content before sending, especially for batch notifications.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A mistaken or overbroad request could send an internal notice to multiple employees.

Why it was flagged

The skill intentionally supports sending messages to multiple employee IDs in one call. This matches the stated purpose, but it can create real internal communications at scale.

Skill content
多个工号用英文逗号分隔:
python scripts/send_message.py -c "1112,1113,1114" -t "会议通知:今天下午2点开会" -tt "会议提醒"
Recommendation

Confirm recipient employee IDs and message text before invoking the skill, especially for batch sends.

What this means

Message contents may traverse the configured network path without TLS if the default HTTP gateway is used.

Why it was flagged

The gateway destination is configurable but defaults to a plain HTTP private-network URL. The script sends recipient codes and message text to that gateway.

Skill content
return os.environ.get("JIUWU_MESSAGE_GATEWAY_URL", "http://192.168.1.213:5000")
Recommendation

Use this only with a trusted internal gateway, preferably over HTTPS or a protected network, and avoid sending sensitive content unless the gateway security is understood.

What this means

Users have less external context for who maintains the skill or where to verify updates.

Why it was flagged

The registry information does not identify an upstream source or homepage. The bundled code is simple and present, but provenance is still limited.

Skill content
Source: unknown
Homepage: none
Recommendation

Review the included script and install it only if you trust the publisher or your organization has validated the gateway integration.