by team-telnyx
Official Telnyx skills for AI coding agents
# Add to your Claude Code skills
git clone https://github.com/team-telnyx/telnyx-skillsOfficial skills for AI coding agents to integrate Telnyx APIs using the native SDKs.
These skills follow the Agent Skills specification and can be installed in AI coding assistants like Claude Code, Cursor, Windsurf, and other compatible agents.
Step 1. Add the Telnyx skills marketplace (one-time setup):
/plugin marketplace add team-telnyx/telnyx-skills
Step 2. Install a plugin — pick a plugin from table below:
/plugin install <PLUGIN>@telnyx-skills
Replace <PLUGIN> with the plugin from the table below e.g /plugin install telnyx-python@telnyx-skills or /plugin install telnyx-twilio-migration@telnyx-skills
| Plugin | Language |
|--------|----------|
| telnyx-curl | curl (REST API) |
| telnyx-go | Go |
| telnyx-java | Java |
| telnyx-javascript | JavaScript / Node.js |
| telnyx-python | Python |
| telnyx-ruby | Ruby |
| telnyx-webrtc-client | WebRTC client SDKs (JS, iOS, Android, Flutter, React Native) |
| telnyx-twilio-migration | Migrate from Twilio to Telnyx |
| telnyx-cli | Telnyx CLI |
Each language plugin includes all <!-- PRODUCT_COUNT -->36<!-- /PRODUCT_COUNT --> Telnyx products (messaging, voice, numbers, IoT, AI, and more).
The WebRTC client plugin covers building VoIP calling apps — see WebRTC Client SDKs for details.
After installing, your AI agent knows how to write correct Telnyx SDK code:
import os
from telnyx import Telnyx
client = Telnyx(api_key=os.environ.get("TELNYX_API_KEY"))
# Send an SMS
response = client.messages.send(
from_="+15550001234",
to="+18445550001",
text="Hello from Telnyx!",
)
print(response.data)
Skills are organized by product and language. Each product is available in JavaScript, Python, Go, Java, and Ruby (append the language suffix, e.g. telnyx-messaging-python).
| Skill | Description |
|-------|-------------|
| telnyx-messaging-* | Send/receive SMS/MMS, manage messaging numbers, handle opt-outs |
| telnyx-messaging-profiles-* | Messaging profiles, number pools, short codes |
| telnyx-messaging-hosted-* | Hosted SMS numbers, toll-free verification, RCS |
| telnyx-10dlc-* | 10DLC brand/campaign registration for A2P compliance |
| Skill | Description |
|-------|-------------|
| telnyx-voice-* | Call control: dial, answer, hangup, transfer, bridge |
| telnyx-voice-media-* | Audio playback, text-to-speech, call recording |
| telnyx-voice-gather-* | DTMF/speech input collection, AI-powered gather |
| telnyx-voice-streaming-* | Real-time audio streaming, forking, transcription |
| telnyx-voice-conferencing-* | Conference calls, queu...
No comments yet. Be the first to share your thoughts!