gotifySend push notifications via Gotify when long-running tasks complete or important events occur. Use when the user asks to "send a Gotify notification", "notify me when this finishes", "push notification", "alert me via Gotify", or wants to be notified of task completion.
Install via ClawdBot CLI:
clawdbot install jmagar/gotifySend push notifications to your Gotify server when long-running tasks complete or important events occur.
This skill enables Clawdbot to send push notifications via Gotify, useful for:
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)bash scripts/send.sh "Task completed successfully"
bash scripts/send.sh --title "Build Complete" --message "skill-sync tests passed"
bash scripts/send.sh -t "Critical Alert" -m "Service down" -p 10
bash scripts/send.sh --title "Deploy Summary" --markdown --message "
## Deployment Complete
- **Status**: ā
Success
- **Duration**: 2m 34s
- **Commits**: 5 new
"
# Run long task
./deploy.sh && bash ~/clawd/skills/gotify/scripts/send.sh "Deploy finished"
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}}'"
}
-m, --message : Notification message (required)-t, --title : Notification title (optional)-p, --priority <0-10>: Priority level (default: 5)--markdown: Enable markdown formatting in message# 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"
if ! ./critical-task.sh; then
bash scripts/send.sh -t "ā ļø Critical Failure" -m "Task failed, check logs" -p 10
fi
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
"
When the user says:
&& bash scripts/send.sh "Task complete" to their commandbash scripts/send.sh with their messageAlways confirm the notification was sent successfully (check for JSON response with message ID).
Generated Mar 1, 2026
Send notifications when CI/CD pipelines complete deployments or fail, allowing teams to respond quickly to issues. This reduces manual monitoring and provides immediate alerts for critical build or deployment statuses.
Notify analysts or engineers when long-running data processing jobs, such as ETL pipelines or batch analyses, finish. This enables timely data review and reduces downtime waiting for results.
Alert homeowners when automated tasks, like security scans or smart device updates, are completed. This enhances user awareness and allows for quick action if any issues arise during the process.
Notify researchers when background tasks, such as data collection or simulation runs, are finished. This streamlines workflow by eliminating constant checks and enabling focus on other work.
Offer a basic version of the skill for free with limited notifications, then charge for advanced features like priority alerts, analytics, or team collaboration tools. This attracts individual users and scales with enterprise needs.
Provide paid services to businesses for integrating this skill into their existing workflows, such as setting up automated alerts for specific tasks or customizing notifications for unique use cases.
Sell support packages that include updates, troubleshooting, and priority assistance for organizations using the skill in critical operations. This ensures reliability and quick issue resolution.
š¬ Integration Tip
Ensure the Gotify server URL and token are correctly configured in the credentials file, and test with a simple notification first to verify connectivity and permissions.
CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).
Read and send email via IMAP/SMTP. Check for new/unread messages, fetch content, search mailboxes, mark as read/unread, and send emails with attachments. Works with any IMAP/SMTP server including Gmail, Outlook, 163.com, vip.163.com, 126.com, vip.126.com, 188.com, and vip.188.com.
Gmail API integration with managed OAuth. Read, send, and manage emails, threads, labels, and drafts. Use this skill when users want to interact with Gmail. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).
Automatically logs into email accounts (Gmail, Outlook, QQ Mail, etc.) and generates daily email summaries. Use when the user wants to get a summary of their emails, check important messages, or create daily email digests.
Fetch content from Feishu (Lark) Wiki, Docs, Sheets, and Bitable. Automatically resolves Wiki URLs to real entities and converts content to Markdown.
Manage Feishu (Lark) calendars by listing, searching, checking schedules, syncing events, and marking tasks with automated date extraction.