← All skills
Tencent SkillHub · Communication & Collaboration

Discord Voice Using Deepgram

Voice-channel conversations in Discord using Deepgram streaming STT + low-latency TTS

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Voice-channel conversations in Discord using Deepgram streaming STT + low-latency TTS

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
clawdbot.plugin.json, index.ts, package.json, SKILL.md, tsconfig.json, _meta.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

Deepgram Discord Voice (Clawdbot/OpenClaw Plugin)

This plugin lets you talk to your agent only from a Discord voice channel. Pipeline (low latency): Discord voice audio → Deepgram streaming STT (WebSocket) Transcript → your agent Agent reply → Deepgram TTS (/v1/speak streamed HTTP Ogg/Opus) Audio played back into the voice channel

Requirements

A Discord bot token (DISCORD_TOKEN) A Deepgram API key (DEEPGRAM_API_KEY) Discord bot permissions in your server: Connect Speak Use Voice Activity

Option A: Install from ClawHub

In your OpenClaw/Clawdbot dashboard, open Skills/Plugins. Add/install deepgram-discord-voice. Set the required environment variables.

Option B: Manual install

Copy this folder into your extensions/plugins directory. Run: npm install Restart OpenClaw/Clawdbot.

Key settings

primaryUser (recommended): Who the bot listens to by default. Best: your Discord user ID (numeric) Also supported: username/display name (e.g., atechy) if unique in-channel allowVoiceSwitch: If true, the primary user can switch who is allowed by voice. wakeWord: Prefix for voice control commands. Default: openclaw. deepgram.sttModel: Default nova-2. deepgram.language: Optional BCP‑47 language tag (e.g., en-US, es, es-EC). ttsVoice: Deepgram Aura voice model (e.g., aura-2-thalia-en).

Example config

{ "plugins": { "entries": { "deepgram-discord-voice": { "enabled": true, "config": { "streamingSTT": true, "streamingTTS": true, "primaryUser": "atechy", "allowVoiceSwitch": true, "wakeWord": "openclaw", "ttsVoice": "aura-2-thalia-en", "vadSensitivity": "medium", "bargeIn": true, "deepgram": { "sttModel": "nova-2", "language": "en-US" } } } } } }

Join a voice channel

Use the plugin tool or slash command (depends on your OpenClaw setup): Join: action=join with the channelId Leave: action=leave

Talk (voice channel)

Once the bot is connected, just speak.

Safeguard: only listen to you (default)

When primaryUser is set, the plugin will only listen to that user unless you allow someone else.

Let someone else talk (voice commands)

As the primary user, say: openclaw allow <name> openclaw listen to <name> To lock it back: openclaw only me openclaw reset

Switch via tool actions (optional)

allow_speaker with user (id / @mention / name) only_me status

Notes

Lowest latency comes from streamingSTT=true and streamingTTS=true. Deepgram TTS is streamed over HTTP in Ogg/Opus so Discord can play it immediately.

Category context

Messaging, meetings, inboxes, CRM, and teammate communication surfaces.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Config1 Docs1 Scripts
  • SKILL.md Primary doc
  • index.ts Scripts
  • _meta.json Config
  • clawdbot.plugin.json Config
  • package.json Config
  • tsconfig.json Config