Telnyx Stt

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to upload a chosen audio file to Telnyx for transcription using your Telnyx API key, with no hidden install or unrelated behavior shown.

This looks appropriate for its stated purpose. Before installing, be sure you are comfortable sending selected audio files to Telnyx and using your Telnyx API key for the request.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The skill will act under your Telnyx account and may consume paid API usage, but this is expected for the stated transcription function.

Why it was flagged

The script uses a Telnyx API key from the environment as a bearer token to call the Telnyx service.

Skill content
api_key = os.environ.get("TELNYX_API_KEY") ... "Authorization": f"Bearer {api_key}"
Recommendation

Use a revocable Telnyx API key with appropriate scope and monitor provider usage if cost or account access is a concern.

What this means

Audio content may contain private information and will leave the local machine for processing by Telnyx.

Why it was flagged

The selected local audio file is read and uploaded to Telnyx's transcription API.

Skill content
with open(audio_path, "rb") as f: audio_data = f.read() ... url = "https://api.telnyx.com/v2/ai/audio/transcriptions"
Recommendation

Only transcribe files you are comfortable sending to Telnyx, and review Telnyx's data handling terms for sensitive recordings.