[Example] 020 — Twilio Media Streams Real-Time Call Transcription - #1
Merged
Merged
Conversation
…iption 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
Author
|
@github-copilot please review this PR |
lukeocodes
added a commit
that referenced
this pull request
Mar 29, 2026
Root cause: agent merged PRs #1 and #2 with zero test checks run, because it misread empty statusCheckRollup as 'no failures = safe to merge'. Fix: split into two jobs: - test-prs (native CI): checks out each PR branch, runs npm/pytest/go test directly, labels PRs (fix-needed/needs-credentials), records results - agent: receives explicit PASS/FAIL/MISSING_CREDS/SKIP per PR from Phase 1; CRITICAL MERGE RULE in prompt: only merge PRs where Phase 1 returned PASS The merge decision is no longer based on the agent reading GitHub API check state — it's based on actual test execution in this same workflow run.
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
New example: Twilio Media Streams — Real-Time Call Transcription
Integration: Twilio Media Streams
Language: Node.js
Products: Speech-to-Text (live streaming)
What this example shows
Transcribe live phone calls in real-time by connecting Twilio Media Streams to Deepgram's streaming STT API. An Express server receives μ-law audio from Twilio over WebSocket, decodes it, and forwards it to Deepgram for instant transcription with interim and final results.
Files added
examples/020-twilio-media-streams-node/README.mdexamples/020-twilio-media-streams-node/.env.exampleexamples/020-twilio-media-streams-node/src/index.js— Express server with WebSocket relayexamples/020-twilio-media-streams-node/tests/test.js— Integration testRequired secrets
DEEPGRAM_API_KEY(already configured)TWILIO_ACCOUNT_SID— Twilio account SIDTWILIO_AUTH_TOKEN— Twilio auth tokenTWILIO_PHONE_NUMBER— Twilio phone number with Voice capabilityRaised by create-example agent on 2026-03-29