monitor

monitor is a skill for Claude Code from k1p1l0/claude-telegram-supercharged. It costs 62 tokens per session (793 once invoked), scanned B, original, Apache-2.0.

A monitoring skill for a Telegram daemon, the background service that runs a Telegram bot. It checks running processes, startup status, recent logs, server health, and the bot's remote-control address.

In plain words
What is it for?
Check bot health, inspect recent errors, verify supporting processes, diagnose MCP server problems, and find the remote-control URL.
Why use it?
It helps identify whether the bot is running and where a failure occurred. It gathers status and diagnostic details in one check instead of requiring several separate commands.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Good fit Check bot health, inspect recent errors, verify supporting processes, diagnose MCP server problems, and find the remote-control URL.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/k1p1l0/claude-telegram-supercharged/monitor
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add k1p1l0/claude-telegram-supercharged --skill monitor
Clone the repo
git clone --depth 1 https://github.com/k1p1l0/claude-telegram-supercharged

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for monitor

README.md
[![agentmods](https://agentmods.dev/badge/skills/k1p1l0/claude-telegram-supercharged/monitor/github.svg)](https://agentmods.dev/skills/k1p1l0/claude-telegram-supercharged/monitor)
Your own site
<a href="https://agentmods.dev/skills/k1p1l0/claude-telegram-supercharged/monitor"><img src="https://agentmods.dev/badge/skills/k1p1l0/claude-telegram-supercharged/monitor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for monitor

Your own site · 80×15
<a href="https://agentmods.dev/skills/k1p1l0/claude-telegram-supercharged/monitor"><img src="https://agentmods.dev/badge/skills/k1p1l0/claude-telegram-supercharged/monitor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 62 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 793 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00062 $0.00793
Opus 5 $0.00031 $0.00396
Sonnet 5 $0.00012 $0.00159
Haiku 4.5 $0.00006 $0.00079

Measured 10d ago against content hash ab0527bb3b9c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade B, and why

monitor scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

tail -10 ~/.claude/channels/telegram/data/supervisor-stderr.log
skills/monitor/SKILL.md · 109 lines

How it starts

The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/telegram:monitor — Telegram Daemon Monitor

Shows the health and status of the Telegram daemon at a glance.

What to check

Run these checks and present a clean summary:

1. Process status

ps aux | grep -E "telegram-supervisor|channels.*telegram|expect.*daemon|caffeinate.*supervisor|bun server.ts" | grep -v grep

Report:

  • Supervisor (bun telegram-supervisor.ts) — PID, uptime
  • Expect wrapper — PID
  • Claude bot (claude --channels ...) — PID, TTY, CPU/memory
  • MCP server (bun server.ts) — PID (if missing, the Telegram plugin didn't start)
  • Caffeinate — running or not

If no processes found, report "Daemon is NOT running."

2. Launchd status

launchctl list | grep claude-telegram

Report loaded/not loaded.

3. Recent supervisor logs

tail -10 ~/.claude/channels/telegram/data/supervisor-stderr.log

Show the last few log entries — look for crashes, restarts, orphan cleanup, or errors.

4. MCP server health

cat ~/.claude/channels/telegram/data/supervisor-stdout.log | strings | grep -i "MCP server" | tail -5

Report any "MCP server needs a..." or "MCP servers fail" messages.

5. Remote control URL

cat ~/.claude/channels/telegram/data/supervisor-stdout.log | strings | grep "session_" | tail -1

Extract and show the https://claude.ai/code/session_XXX URL so the user can watch the daemon live in the browser.

6. Lock file

cat ~/.claude/channels/telegram/data/telegram.lock 2>/dev/null

Show the PID in the lock file and whether that process is still alive.

Output format

Present as a clean status dashboard:

## Telegram Daemon Status

| Component        | Status  | PID   | Details          |
|------------------|---------|-------|------------------|
| Supervisor       | ✅ alive | 12345 | uptime: 2h       |
| Claude bot       | ✅ alive | 12346 | CPU: 0.5%, 300MB |
| MCP server       | ✅ alive | 12347 |                  |
| Caffeinate       | ✅ alive | 12348 |                  |
| Launchd          | ✅ loaded|       |                  |

**Remote control:** https://claude.ai/code/session_XXX
**Lock file:** PID 12346 (alive)

### Recent logs
[last 5 log entries]

Read the full file on GitHub · 109 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 109 lines · 62 tokens per session scan B ab0527bb3b9c

Subscribe to this mod's changes

monitor is a skill published in the GitHub repository k1p1l0/claude-telegram-supercharged (113 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 62 tokens to every session and 793 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

ai-ml-development

AI and machine learning development with PyTorch, TensorFlow, and LLM integration. Use when building ML models, training pipelines, fine-tuning LLMs, or implementing AI features.

travisjneuman/.claude · 43 tokens

authentication-patterns

OAuth 2.0, JWT, SSO, MFA, NextAuth/Clerk/Supabase Auth implementation patterns.

travisjneuman/.claude · 28 tokens

case-interview-practice

Interactive consulting case interview practice with structured frameworks, feedback mechanisms, and progressive difficulty. Use when preparing for management consulting interviews, case competitions, or business problem-solving exercises.

travisjneuman/.claude · 39 tokens

finance

Financial analysis expertise for financial modeling (DCF, LBO, M&A), valuation, financial statement analysis, capital allocation, treasury management, and corporate finance decisions. Use when building financial models, analyzing statements, or making investment decisions.

travisjneuman/.claude · 48 tokens

i18n-localization

Internationalization and localization for global applications. Use when adding multi-language support, handling regional formats, or preparing apps for global markets.

travisjneuman/.claude · 32 tokens

leadership

Executive leadership expertise for decision-making, change management, crisis management, stakeholder management, team building, and organizational leadership. Use when leading teams, managing change, navigating crises, or developing leadership skills.

travisjneuman/.claude · 42 tokens