# Send Gotify to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gotify",
    "name": "Gotify",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/jmagar/gotify",
    "canonicalUrl": "https://clawhub.ai/jmagar/gotify",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/gotify",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gotify",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/send.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "gotify",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T04:41:02.087Z",
      "expiresAt": "2026-05-07T04:41:02.087Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gotify",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gotify",
        "contentDisposition": "attachment; filename=\"gotify-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "gotify"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gotify"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gotify",
    "downloadUrl": "https://openagent3.xyz/downloads/gotify",
    "agentUrl": "https://openagent3.xyz/skills/gotify/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gotify/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gotify/agent.md"
  }
}
```
## Documentation

### Gotify Notification Skill

Send push notifications to your Gotify server when long-running tasks complete or important events occur.

### Purpose

This skill enables Clawdbot to send push notifications via Gotify, useful for:

Alerting when long-running tasks complete
Sending status updates for background operations
Notifying of important events or errors
Integration with task completion hooks

### Setup

Create the credentials file: ~/.clawdbot/credentials/gotify/config.json

{
  "url": "https://gotify.example.com",
  "token": "YOUR_APP_TOKEN"
}

url: Your Gotify server URL (no trailing slash)
token: Application token from Gotify (Settings → Apps → Create Application)

### Basic Notification

bash scripts/send.sh "Task completed successfully"

### With Title

bash scripts/send.sh --title "Build Complete" --message "skill-sync tests passed"

### With Priority (0-10)

bash scripts/send.sh -t "Critical Alert" -m "Service down" -p 10

### Markdown Support

bash scripts/send.sh --title "Deploy Summary" --markdown --message "
## Deployment Complete

- **Status**: ✅ Success
- **Duration**: 2m 34s
- **Commits**: 5 new
"

### Option 1: Direct Call After Task

# Run long task
./deploy.sh && bash ~/clawd/skills/gotify/scripts/send.sh "Deploy finished"

### Option 2: Hook Integration (Future)

When Clawdbot supports task completion hooks, this skill can be triggered automatically:

# Example hook configuration (conceptual)
{
  "on": "task_complete",
  "run": "bash ~/clawd/skills/gotify/scripts/send.sh 'Task: {{task_name}} completed in {{duration}}'"
}

### Parameters

-m, --message <text>: Notification message (required)
-t, --title <text>: Notification title (optional)
-p, --priority <0-10>: Priority level (default: 5)

0-3: Low priority
4-7: Normal priority
8-10: High priority (may trigger sound/vibration)


--markdown: Enable markdown formatting in message

### Notify when subagent finishes

# After spawning subagent
sessions_spawn --task "Research topic" --label my-research
# ... wait for completion ...
bash scripts/send.sh -t "Research Complete" -m "Check session: my-research"

### Notify on error with high priority

if ! ./critical-task.sh; then
  bash scripts/send.sh -t "⚠️ Critical Failure" -m "Task failed, check logs" -p 10
fi

### Rich markdown notification

bash scripts/send.sh --markdown -t "Daily Summary" -m "
# System Status

## ✅ Healthy
- UniFi: 34 clients
- Sonarr: 1,175 shows
- Radarr: 2,551 movies

## 📊 Stats
- Uptime: 621h
- Network: All OK
"

### Workflow

When the user says:

"Notify me when this finishes" → Add && bash scripts/send.sh "Task complete" to their command
"Send a Gotify alert" → Run bash scripts/send.sh with their message
"Push notification for task completion" → Integrate into their workflow with appropriate title/priority

Always confirm the notification was sent successfully (check for JSON response with message ID).

### Notes

Requires network access to your Gotify server
App token must have "create message" permission
Priority levels affect notification behavior on client devices
Markdown support depends on Gotify client version (most modern clients support it)

### Reference

Gotify API docs: https://gotify.net/docs/
Gotify Android/iOS apps for receiving notifications
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jmagar
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T04:41:02.087Z
- Expires at: 2026-05-07T04:41:02.087Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/gotify)
- [Send to Agent page](https://openagent3.xyz/skills/gotify/agent)
- [JSON manifest](https://openagent3.xyz/skills/gotify/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/gotify/agent.md)
- [Download page](https://openagent3.xyz/downloads/gotify)