telnyx-ai-assistants-c…
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
Configure private networks, WireGuard VPN gateways, internet gateways, and virtual cross connects. This skill provides Go SDK examples.
$ npx -y skills add team-telnyx/ai --skill telnyx-networking-go --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/telnyx-networking-goContext preview
The summary Claude sees to decide when to auto-load this skill.
Configure private networks, WireGuard VPN gateways, internet gateways, and virtual cross connects. This skill provides Go SDK examples.
name: telnyx-networking-go description: >- Configure private networks, WireGuard VPN gateways, internet gateways, and virtual cross connects. This skill provides Go SDK examples. metadata: author: telnyx product: networking language: go generated_by: telnyx-openapi-pipeline
<!-- 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"
result, err := client.Messages.Send(ctx, params)
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:
// Rate limited — wait and retry with exponential backoff
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).
`GET /ai/clusters`
page, err := client.AI.Clusters.List(context.Background(), telnyx.AIClusterListParams{})
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", page)Returns: `bucket` (string), `created_at` (date-time), `finished_at` (date-time), `min_cluster_size` (integer), `min_subcluster_size` (integer), `status` (enum: pending, starting, running, completed, failed), `task_id` (string)
Starts a background task to compute how the data in an [embedded storage bucket](https://developers.telnyx.com/api-reference/embeddings/embed-documents) is clustered. This helps identify common themes and patterns in the data.
`POST /ai/clusters` — Required: `bucket`
Optional: `files` (array[string]), `min_cluster_size` (integer), `min_subcluster_size` (integer), `prefix` (string)
response, err := client.AI.Clusters.Compute(context.Background(), telnyx.AIClusterComputeParams{
Bucket: "my-bucket",
})
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response.Data)Returns: `task_id` (string)
`GET /ai/clusters/{task_id}`
cluster, err := client.AI.Clusters.Get(
context.Background(),
"task_id",
telnyx.AIClusterGetParams{},
)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", cluster.Data)Returns: `bucket` (string), `clusters` (array[object]), `status` (enum: pending, starting, running, completed, failed)
`DELETE /ai/clusters/{task_id}`
err := client.AI.Clusters.Delete(context.Background(), "task_id")
if err != nil {
log.Fatal(err)
}`GET /ai/clusters/{task_id}/graph`
response, err := client.AI.Clusters.FetchGraph(
context.Background(),
"task_id",
telnyx.AIClusterFetchGraphParams{},
)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", response)List all available integrations.
`GET /ai/integrations`
integrations, err := client.AI.Integrations.List(context.Background())
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", integrations.Data)Returns: `available_tools` (array[string]), `description` (string), `display_name` (string), `id` (string), `logo_url` (string), `name` (string), `status` (enum: disconnected, connected)
List user setup integrations
`GET /ai/integrations/connections`
connections, err := client.AI.Integrations.Connections.List(context.Background())
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", connections.Data)Returns: `allowed_tools` (array[string]), `id` (string), `integration_id` (string)
Get user setup integrations
`GET /ai/integrations/connections/{user_connection_id}`
connection, err := client.AI.Integrations.Connections.Get(context.Background(), "user_connection_id")
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", connection.Data)Returns: `allowed_tools` (array[string]), `id` (string), `integration_id` (string)
Delete a specific integration connection.
`DELETE /ai/integrations/connections/{user_connection_id}`
err := client.AI.Integrations.Connections.Delete(context.Background(), "user_connection_id")
if err != nil {
log.Fatal(err)
}Retrieve integration details
`GET /ai/integrations/{integration_id}`
integration, err := client.AI.Integrations.Get(context.Background(), "integration_id")
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", integration.ID)Returns: `available_tools` (array[string]), `description` (string), `display_name` (string), `id` (string), `logo_url` (string), `name` (string), `status` (enum: disconnected, connected)
`GET /global_ip_allowed_ports`
globalIPAllowedPorts, err := client.GlobalIPAllowedPorts.List(context.Background())
if err != nil {
log.Fatal(err)
}
fmt.Printf("%+v\n", globalIPAllowedPorts.Data)Returns: `first_port` (integer), `id` (uuid), `las
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.