oimiragieo/agent-studio

enable-telegram

Start Telegram monitoring. Auto-enables voice pipeline if ElevenLabs or OpenAI TTS keys are detected.

First seen Jun 11, 2026

Installation

$ npx skills add oimiragieo/agent-studio --skill enable-telegram

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from oimiragieo/agent-studio · top by installs.

npx skills add oimiragieo/agent-studio

Browse all from oimiragieo/agent-studio

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 40
Default branch main
Open issues 501
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version7.0.0
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,931 B
  • docs SUMMARY.md 124 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Enable Telegram

Step 1: Check if already running

Read .claude/context/runtime/channel-daemon.pid. If it exists and has content, verify the PID is alive using node -e "try { process.kill(PID, 0); console.log('ALIVE') } catch { console.log('DEAD') }". If ALIVE, tell the user the daemon is already running and show them status commands. Done — do NOT try to start again.

Step 2: Start the daemon

Spawn a developer agent:

subagent_type: developer
prompt: Run this command and report the output: node scripts/channels/telegram-ctl.cjs start

Step 3: Auto-detect voice pipeline

Read .env and check for ELEVENLABSAPIKEY or OPENAIAPIKEY. If either is set, tell the user:

"Voice pipeline auto-enabled — voice messages will be transcribed (Whisper) and responded to with audio (ElevenLabs/OpenAI TTS)."

If neither is set, just say:

"Text-only mode. Add ELEVENLABSAPIKEY or OPENAIAPIKEY to .env for voice message support."

Step 4: Confirm

Tell the user what's active:

  • Daemon status (running on port 3101)
  • Text messaging: active
  • Voice pipeline: active/inactive
  • Memory: loaded (N chats, N profiles)
  • Commands: type / in Telegram for the menu

Important

  • Do NOT use curl to check daemon health — it's blocked by security hooks
  • Use node -e with process.kill(pid, 0) or http.get for health checks
  • The PID file + kill(0) check is sufficient to confirm the daemon is alive