voice

Voice communication via Telegram. Automatically transcribes incoming voice messages using faster-whisper and replies with TTS voice. Use for all voice-related interactions on Telegram.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "voice" with this command: npx skills add polityang/telegram-voice

Voice Communication

This skill enables voice communication on Telegram:

  1. Receive: Transcribe voice messages using faster-whisper
  2. Reply: Send voice replies using TTS

Incoming Voice (Automatic)

When receiving voice messages (.ogg files), use faster-whisper to transcribe:

from faster_whisper import WhisperModel

model = WhisperModel('base', device='cpu', compute_type='int8')
segments, info = model.transcribe('<file_path>', language='zh')
result = ''.join([s.text for s in segments])

Outgoing Voice (TTS)

Use the tts tool to send voice replies:

{
  "action": "send",
  "channel": "telegram", 
  "message": "<text>",
  "asVoice": true
}

Or use the tts tool directly:

{
  "channel": "telegram",
  "text": "<text to speak>"
}

Language

  • Input: Auto-detect or specify language (zh for Chinese)
  • Output: Match user's language preference

Requirements

  • faster-whisper: pip install faster-whisper
  • TTS already configured in OpenClaw

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Klaviyo

Klaviyo API integration with managed OAuth. Access profiles, lists, segments, campaigns, flows, events, metrics, templates, catalogs, and webhooks. Use this...

Registry SourceRecently Updated
General

Linear

Linear API integration with managed OAuth. Query and manage issues, projects, teams, cycles, and labels using GraphQL. Use this skill when users want to crea...

Registry SourceRecently Updated
12.9K18byungkyu
General

WooCommerce

WooCommerce REST API integration with managed OAuth. Access products, orders, customers, coupons, shipping, taxes, reports, and webhooks. Use this skill when...

Registry SourceRecently Updated
13.7K18byungkyu
General

Monday.com

Monday.com API integration with managed OAuth. Manage boards, items, columns, groups, and workspaces using GraphQL. Use this skill when users want to create,...

Registry SourceRecently Updated
14.1K6byungkyu