voice-gateway-setup

voice-gateway-setup is a skill for Claude Code from Cognigy/cognigy-plugin. It costs 31 tokens per session (670 once invoked), scanned A, original, MIT.

A setup guide for connecting a Cognigy AI Agent to a browser-based voice endpoint using WebRTC, a technology for real-time audio in web browsers.

In plain words
What is it for?
Use it to create a Voice Gateway endpoint, provision its browser voice client, and optionally configure its label, theme, transcription, tagline, and logo.
Why use it?
It explains the required project, conversation flow, and language model, then provides a browser link for trying the voice agent.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the cognigy plugin — 15 skills, 2 agents shipped together

Good fit Use it to create a Voice Gateway endpoint, provision its browser voice client, and optionally configure its label, theme, transcription, tagline, and logo.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cognigy/cognigy-plugin/voice-gateway-setup
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 Cognigy/cognigy-plugin --skill voice-gateway-setup
Clone the repo
git clone --depth 1 https://github.com/Cognigy/cognigy-plugin

Made for: Claude Code.

Or install cognigy, the plugin that ships this one along with the rest of its 15 skills, 2 agents.

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 voice-gateway-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/cognigy/cognigy-plugin/voice-gateway-setup/github.svg)](https://agentmods.dev/skills/cognigy/cognigy-plugin/voice-gateway-setup)
Your own site
<a href="https://agentmods.dev/skills/cognigy/cognigy-plugin/voice-gateway-setup"><img src="https://agentmods.dev/badge/skills/cognigy/cognigy-plugin/voice-gateway-setup/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 voice-gateway-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/cognigy/cognigy-plugin/voice-gateway-setup"><img src="https://agentmods.dev/badge/skills/cognigy/cognigy-plugin/voice-gateway-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 670 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00031 $0.00670
Opus 5 $0.00015 $0.00335
Sonnet 5 $0.00006 $0.00134
Haiku 4.5 $0.00003 $0.00067

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

Security

Grade A, and why

voice-gateway-setup scanned grade A with 0 findings 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 9d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugin/skills/voice-gateway-setup/SKILL.md · 88 lines

How it starts

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

Voice Gateway Setup Guide

Deploy an AI Agent as a voice-enabled endpoint with WebRTC support. Users can talk to the agent directly in their browser.

Prerequisites

  1. A Project — use list_resources { resourceType: "project" } to find one, or let create_ai_agent create one automatically.
  2. A Flow — the conversation logic the voice endpoint connects to. Use list_resources { resourceType: "flow", projectId } to find existing flows.
  3. An LLM — the agent needs an LLM to generate responses. Use setup_llm if not configured.

Quick Start

1. Create a Voice Gateway endpoint

{
  "projectId": "<24-char hex>",
  "flowId": "<flow referenceId>",
  "name": "My Voice Agent"
}

This automatically:

  • Creates a voiceGateway2 endpoint
  • Provisions a WebRTC client
  • Returns a webrtcDemoUrl the user can open in a browser

2. Customize the WebRTC widget (optional)

{
  "projectId": "<24-char hex>",
  "flowId": "<flow referenceId>",
  "name": "My Voice Agent",
  "webrtcWidgetConfig": {
    "label": "Support Agent",
    "theme": "AI_PURPLE",
    "transcription": { "enabled": true },
    "tagline": "How can I help you today?",
    "avatarLogoUrl": "https://example.com/avatar.png"
  }
}

3. Update an existing endpoint

{
  "endpointId": "<24-char hex>",
  "webrtcWidgetConfig": {
    "theme": "CLEAN_WHITE"
  }
}

WebRTC Widget Themes

Theme Description
DARK_MODE Dark background (default)
CLEAN_WHITE Light/white background
AI_PURPLE Purple accent theme

URLs in the Response

Field Purpose
webrtcDemoUrl Open in browser to talk to the agent — always show this to users
_integration.wsEndpointUrl WebSocket URL for programmatic/embedded use
_integration.embeddingSnippet HTML code to embed the voice widget on a website

Read the full file on GitHub · 88 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. 9d ago First seen · 88 lines · 31 tokens per session scan A 98273201f031

Subscribe to this mod's changes

voice-gateway-setup is a skill published in the GitHub repository Cognigy/cognigy-plugin (12 stars, last pushed yesterday), licensed MIT. It adds 31 tokens to every session and 670 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

x402

Set up Browser Use Cloud payments with x402 — pay per request from a crypto wallet (USDC on Base mainnet), no signup or API key. Two setups it works out up front — "just use it" (set up a wallet so you or Claude Code can run cloud browser tasks paid from the wallet — Claude writes and runs throwaway scripts, nothing…

browser-use/browser-use · 175 tokens

har-derived-api-client

Record a site's XHR into a HAR, derive an HTTP client.

NousResearch/hermes-agent · 19 tokens

derive-client

Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to "derive a client", "build a CLI for ", "reverse engineer this site's API", "record…

vercel-labs/agent-browser · 100 tokens

cloud

Documentation reference for using Browser Use Cloud — the hosted API and SDK for browser automation. Use this skill whenever the user needs help with the Cloud REST API (v2, v3, or v4), browser-use-sdk (Python or TypeScript), X-Browser-Use-API-Key authentication, cloud sessions, browser profiles, profile sync, CDP…

browser-use/browser-use · 177 tokens

sync-new-data-type

Adds scaffolding for a new Sync data type in Chromium across protocol buffers, DataType definitions, feature flags, controller builders, unit tests, and metrics.

chromium/chromium · 36 tokens

browserwing-executor

Control browser automation through HTTP API. Supports page navigation, element interaction (click, type, select), data extraction, accessibility snapshot analysis, screenshot, JavaScript execution, and batch operations.

MemTensor/MemOS · 42 tokens