telnyx-ai-assistants-c…
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
Send and receive SMS/MMS, handle opt-outs and delivery webhooks. Use for notifications, 2FA, or messaging apps.
$ npx -y skills add team-telnyx/ai --skill telnyx-messaging-go --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/telnyx-messaging-goContext preview
The summary Claude sees to decide when to auto-load this skill.
Send and receive SMS/MMS, handle opt-outs and delivery webhooks. Use for notifications, 2FA, or messaging apps.
name: telnyx-messaging-go description: >- Send and receive SMS/MMS, handle opt-outs and delivery webhooks. Use for notifications, 2FA, or messaging apps. metadata: author: telnyx product: messaging language: go generated_by: telnyx-openapi-pipeline contract: v2
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
go get github.com/team-telnyx/telnyx-go
import (
"context"
"fmt"
"os"
"github.com/team-telnyx/telnyx-go"
"github.com/team-telnyx/telnyx-go/option"
)
client := telnyx.NewClient(
option.WithAPIKey(os.Getenv("TELNYX_API_KEY")),
)All examples below assume `client` is already initialized as shown above.
All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:
import "errors"
response, err := client.Messages.Send(context.Background(), telnyx.MessageSendParams{
To: "+18445550001",
From: "+18005550101",
Text: "Hello from Telnyx!",
})
if err != nil {
var apiErr *telnyx.Error
if errors.As(err, &apiErr) {
switch apiErr.StatusCode {
case 422:
fmt.Println("Validation error — check required fields and formats")
case 429:
fmt.Println("Rate limited, retrying...")
default:
fmt.Printf("API error %d: %s\n", apiErr.StatusCode, apiErr.Error())
}
} else {
fmt.Println("Network error — check connectivity and retry")
}
}Common error codes: `401` invalid API key, `403` insufficient permissions, `404` resource not found, `422` validation error (check field formats), `429` rate limited (retry with exponential backoff).
Do not invent Telnyx parameters, enums, response fields, or webhook fields.
Primary outbound messaging flow. Agents need exact request fields and delivery-related response fields.
`client.Messages.Send()` — `POST /messages`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `To` | string (E.164) | Yes | Receiving address (+E.164 formatted phone number or short co... | | `From` | string (E.164) | Yes | Sending address (+E.164 formatted phone number, alphanumeric... | | `Text` | string | Yes | Message body (i.e., content) as a non-empty string. | | `MessagingProfileId` | string (UUID) | No | Unique identifier for a messaging profile. | | `MediaUrls` | array[string] | No | A list of media URLs. | | `WebhookUrl` | string (URL) | No | The URL where webhooks related to this message will be sent. | | ... | | | +7 optional params in [references/api-details.md](references/api-details.md) |
response, err := client.Messages.Send(context.Background(), telnyx.MessageSendParams{
To: "+18445550001",
From: "+18005550101",
Text: "Hello from Telnyx!",
})
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Primary response fields:
Common sender variant that requires different request shape.
`client.Messages.SendWithAlphanumericSender()` — `POST /messages/alphanumeric_sender_id`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `From` | string (E.164) | Yes | A valid alphanumeric sender ID on the user's account. | | `To` | string (E.164) | Yes | Receiving address (+E.164 formatted phone number or short co... | | `Text` | string | Yes | The message body. | | `MessagingProfileId` | string (UUID) | Yes | The messaging profile ID to use. | | `WebhookUrl` | string (URL) | No | Callback URL for delivery status updates. | | `WebhookFailoverUrl` | string (URL) | No | Failover callback URL for delivery status updates. | | `UseProfileWebhooks` | boolean | No | If true, use the messaging profile's webhook settings. |
response, err := client.Messages.SendWithAlphanumericSender(context.Background(), telnyx.MessageSendWithAlphanumericSenderParams{
From: "MyCompany",
MessagingProfileID: "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
Text: "Hello from Telnyx!",
To: "+13125550001",
})
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Primary response fields:
---
Telnyx signs webhooks with Ed25519. Each request includes `telnyx-signature-ed25519` and `telnyx-timestamp` header
This repo is the one-stop shop for AI Agents and AI-first developers building with Telnyx — everything an agent needs to build production-grade applications and manage its account, from signup to funding.
Repo: team-telnyx/ai
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
AI voice assistants with custom instructions, knowledge bases, and tool integrations.