Gotify

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

You are relying on the files shown in the skill package rather than a verifiable upstream source.

Why it was flagged

No upstream source or homepage is provided, so users can review the included files but cannot verify external project provenance from the registry metadata.

Skill content
Source: unknown; Homepage: none
Recommendation

Review the included script before use and install only from a trusted registry/account.

What this means

Notification text, titles, and priority values you provide are sent to the configured Gotify server and may alert your devices.

Why it was flagged

The helper performs an external POST to the configured Gotify server with the notification payload; this is disclosed and central to the skill's purpose.

Skill content
curl -sS -X POST "$GOTIFY_URL/message?token=$GOTIFY_TOKEN" -H "Content-Type: application/json" -d "$PAYLOAD"
Recommendation

Verify the Gotify URL, use HTTPS, and avoid placing secrets or sensitive details in notification messages unless that server is trusted.

What this means

Anyone with the configured app token could send messages to your Gotify instance, including disruptive high-priority alerts.

Why it was flagged

The skill requires a Gotify app token to create messages. This authority is expected for the purpose, but it is sensitive and should be scoped and protected.

Skill content
Create the credentials file: `~/.clawdbot/credentials/gotify/config.json` ... `"token": "YOUR_APP_TOKEN"` ... App token must have "create message" permission
Recommendation

Use a Gotify app token limited to message creation, keep the config file private, and rotate the token if it may have been exposed.