skills/golem-powers/_archive/notify/SKILL.md
Send Telegram notifications to a topic-routed group chat. Supports multiple sources (alerts, nightshift, email, jobs) each routing to a dedicated Telegram topic. Use when: a task completes, hitting a blocker, waiting for user input, reporting errors, or sending urgent alerts. Available via shell function and HTTP API. NOT for: asking the user questions (use AskUserQuestion), routine progress updates, or sending messages to external contacts.
npx skillsauth add etanhey/golems notifyInstall 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.
Notifications are sent to a group with Topics. Each source routes to a different topic.
# Goes to 🔔 Alerts (default for CLI sessions)
notify "Task Done" "Finished implementing the feature"
# Specify source to route elsewhere
notify "Title" "Body" "jobs" # → 🎯 Jobs
notify "Title" "Body" "email" # → 📧 Email
| Source | Routes To | Used By |
|--------|-----------|---------|
| alerts | 🔔 Alerts | CLI sessions (default), Golems |
| claude | 💬 General | ClaudeGolem only (DO NOT use from CLI) |
| nightshift | 🌙 Night Shift | Night Shift golem |
| email | 📧 Email | EmailGolem |
| jobs | 🎯 Jobs | JobGolem |
| healthcheck | 🔔 Alerts | Daily healthcheck |
Note: ClaudeGolem chat goes to General (Telegram's default topic)
await fetch("http://localhost:3847/notify", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
title: "Title",
body: "Message body",
source: "alerts", // or email, jobs, nightshift
priority: "default", // or "high" for urgent
}),
});
DO notify:
DON'T notify:
notify CLI handles special chars automaticallydevelopment
Create, edit, and verify golem-powers skills using the standard SKILL.md structure, workflow files, adapters, templates, and eval fixtures. Use for new skills, structural edits, workflows/adapters, and pre-deploy validation. NOT for invoking existing skills, superpowers skills, or skill-creator agent workflows.
testing
Extract structured knowledge from any video source — YouTube URLs or local screen recordings. YouTube → gems workflow (yt-dlp transcript → keyword hotspots → frame extract → brain_digest → structured gems). Screen recordings → QA workflow (reuses /qa-video stalker pipeline). Use when user shares a YouTube link wanting deep extraction with frames, shares a .mov/.mp4 for QA processing, says "extract from video", "video gems", "process this recording", or mentions gem extraction from video content.
testing
Use when running or reviewing any recurring monitor loop for merge queues, worker queues, collab tails, or agent completion. Enforces drive-to-completion ticks: every tick must query live state with `!`, classify whether real progress happened, and then dispatch, verify-and-decrement, or escalate-park. Triggers on: monitor loop, /loop, recurring tick, keep monitoring, silent autonomous, merge gate, blocked review, no-progress loop.
tools
MeHayom freelance client management — daily updates, decision tracking, time logging. Use when drafting Yuval updates, logging scope changes, tracking hours, or any MeHayom client communication. Triggers: 'draft Yuval update', 'client update', 'daily update', 'log decision', 'track time', 'mehayom'.