Best for
- Use when the user asks to "set up Telegram notifications", "get pinged on Telegram", "connect Telegram for alerts", "set up Sentinel on Telegram", or clicks the in-app "Set this up with the agent" button on the Telegram…
aden-hive/hive/core/framework/skills/_default_skills/telegram-notifications-setup/SKILL.md
Set up a Telegram notification channel (Sentinel) for a colony by driving the browser — create a bot via @BotFather in Telegram Web, store its token, detect the chat to notify, and turn Sentinel on so the colony can ping the user on Telegram and accept replies. Use when the user asks to "set up Telegram notifications", "get pinged on Telegram", "connect Telegram for alerts", "set up Sentinel on Telegram", or clicks the in-app "Set this up with the agent" button on the Telegram step. Requires hiv
Decision brief
Sentinel pings the user on Telegram when a colony stalls and lets them reply to keep it going. It needs one thing: a Telegram bot token (123456:ABC-…), created via @BotFather and stored under credential id telegram. The same token sends alerts and reads the user's replies.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/aden-hive/hive --skill "core/framework/skills/_default_skills/telegram-notifications-setup"Inspect the Agent Skill "hive.telegram-notifications-setup" from https://github.com/aden-hive/hive/blob/54fd8db4ed5f0ba08197b4ff47150b47ffe2f758/core/framework/skills/_default_skills/telegram-notifications-setup/SKILL.md at commit 54fd8db4ed5f0ba08197b4ff47150b47ffe2f758. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
@BotFather is Telegram's official bot for managing bots.
This validates the token via getMe before storing and reports the bot's @username. If it's rejected, re-read the token from BotFather's message and retry — never invent or pad a token.
Telegram bots can only message a user/group after that chat has messaged the bot first. So trigger one message, then detect it:
configure/test target the colony bound to your session (pass colonyid only to set up a different one):
Telegram Web defaults to the K version at https://web.telegram.org/k/. The
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 90/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 10,968 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Sentinel pings the user on Telegram when a colony stalls and lets them reply to
keep it going. It needs one thing: a Telegram bot token (123456:ABC-…),
created via @BotFather and stored under credential id telegram. The same token
sends alerts and reads the user's replies.
You do the whole thing end to end with the sentinel_setup tool (the same API
the desktop connector uses): create the bot, store the token, detect the chat,
point Sentinel at it, and send a test — without making the user paste anything.
Activate hive.browser-automation first — this skill assumes you know the
lifecycle rules (the bridge attaches to the user's own Chrome; never launch or kill
a browser), the screenshot + viewport-fraction coordinate workflow, and
hive-browser interact. Telegram Web is a heavy SPA with custom rendering, so prefer the
screenshot + coordinate path over selectors when the snapshot is unclear.
https://web.telegram.org/k/. The
selectors below are verified there; fall back to screenshot + coordinates if a
selector doesn't match (e.g. the older /a/ version).#editable-message-text — click it, type your text, send
with the Enter key. Used for /newbot, /start, etc.[0.13, 0.04]). Click it,
type a name, then click the result row to open that chat.hive-browser page text ".chat-message:last-child" --json in the terminal — it returns the latest message verbatim — this is
how you capture the token without transposing characters.sentinel_setup({"action": "status"}). If it shows telegram already
configured, the token's stored — skip to Step 3 (detect the chat) (or
straight to Step 4 if the colony config is already set), don't make a new
bot.hive-browser open /
hive-browser navigate https://web.telegram.org/k/ --json in the terminal. You cannot log in for them
— you don't have their phone or SMS code. If it shows a QR / phone-number login,
STOP and ask the user to log into Telegram Web in their Chrome, then continue.
Don't fight the login screen or try to switch login methods yourself.@BotFather is Telegram's official bot for managing bots.
t.me/ URLs. t.me/BotFather
(and hive-browser open-ing it) tends to land on the t.me web page or redirect
without opening the chat. Instead: click the global search box (top-left), type
BotFather, and click the verified result (blue check) to open the chat.#editable-message-text) and send
/newbot. It asks for:
Hive Sentinel), thenbot (e.g. hive_sentinel_<something>_bot).
If the name is taken, BotFather says so — pick another until it's accepted.123456789:AAE…. Read it by running
hive-browser page text ".chat-message:last-child" --json in the terminal, not off a screenshot — the
token is long and a single transposed character makes store_token fail. Copy
the exact digits:rest string.sentinel_setup({"action": "store_token", "provider": "telegram", "token": "123456789:AAE…"})
This validates the token via getMe before storing and reports the bot's
@username. If it's rejected, re-read the token from BotFather's message and retry
— never invent or pad a token.
Prefer not to handle the token yourself? Fall back to
credentials(action="collect", …)withcredential_idtelegram(fieldaccess_token) to pop a secure form. The default flow above is hands-off and is what the in-app "Set this up with the agent" button expects.
Telegram bots can only message a user/group after that chat has messaged the bot first. So trigger one message, then detect it:
@username (top-left search) and open
the result — same as finding BotFather. (Clicking the t.me/<bot> link in
BotFather's reply is less reliable; search is the sure path.)/start (or any message): a fresh bot chat shows a Start button —
click it; otherwise click the composer (#editable-message-text), type
/start, and press Enter. Give it ~2–3s, then detect. That delivers the bot's
first update.
/setprivacy → Disable so the bot can read group messages.)sentinel_setup({"action": "detect_chat"})
It returns the chat_id and the sender_id. Use the returned sender_id for the
allowlist so only that user can drive the colony.
detect_chat is listener-aware: if this bot is already wired to another colony,
Sentinel's background listener is long-polling Telegram and consuming updates — so a
raw getUpdates would always come back empty. The tool handles that for you (it
reads the chat the listener saw), so just call detect_chat. If it says PENDING,
the message simply hasn't landed yet — make sure Start/your message actually sent,
then retry. Do not start decrypting credentials or polling the Telegram API by
hand to debug a PENDING — that fights the listener and gets you nowhere; messaging
the bot and retrying is the whole fix.
configure/test target the colony bound to your session (pass colony_id only to
set up a different one):
sentinel_setup({"action": "configure", "channel": "telegram",
"target": {"chat_id": "123456789"},
"allowlist": ["123456789"], "enabled": true})
sentinel_setup({"action": "test"})
test sends a message to the chat — ask the user to confirm it arrived. If it
didn't, the usual causes are: the chat hasn't messaged the bot yet (redo Step 3),
the wrong chat_id, or (for groups) privacy mode still on. sentinel_setup({"action": "status"}) shows the stored token + the colony's current config any time.
When test succeeds you're done: tell the user Sentinel is live on Telegram and
they can reply to its messages to keep the colony moving. (They can review or change
this under Automations → Set up Sentinel.)
hive.browser-automation and obey its lifecycle rules. Never run
google-chrome/chromium, --remote-debugging-port, or kill any browser/bridge
process — you drive the user's existing Chrome.sentinel_setup status shows telegram
configured, the bot already exists — use it; don't spin up another via
/newbot.hive-browser page text ".chat-message:last-child" --json in the terminal, not off a screenshot, so you don't transpose a
character; if store_token rejects it, re-read — don't pad or guess.t.me/ links (which often
don't open the chat).telegram. The destination is {"chat_id": "…"} (a
number as a string), not a username or link.detect_chat stays PENDING, the user
simply hasn't messaged the bot yet. Guide them to message it, then retry. Never
decrypt the stored token, curl getUpdates, or otherwise debug the API by hand:
the Sentinel listener owns the update stream, so manual polling just loses to it —
detect_chat already reads what the listener saw.Frequently asked questions
Sentinel pings the user on Telegram when a colony stalls and lets them reply to keep it going. It needs one thing: a Telegram bot token (123456:ABC-…), created via @BotFather and stored under credential id telegram. The same token sends alerts and reads the user's replies.
The source record exposes this install command: npx skills add https://github.com/aden-hive/hive --skill "core/framework/skills/_default_skills/telegram-notifications-setup". Inspect the command and pinned source before running it.
Alternatives
garrytan/gbrain
End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
wanshuiyin/Auto-claude-code-research-in-sleep
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
prowler-cloud/prowler
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance