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 JavaScript SDK examples.
$ npx -y skills add team-telnyx/ai --skill telnyx-networking-javascript --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/telnyx-networking-javascriptContext 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 JavaScript SDK examples.
name: telnyx-networking-javascript description: >- Configure private networks, WireGuard VPN gateways, internet gateways, and virtual cross connects. This skill provides JavaScript SDK examples. metadata: author: telnyx product: networking language: javascript generated_by: telnyx-openapi-pipeline
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
npm install telnyx@6.74.2
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});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:
try {
const result = await client.messages.send({ to: '+13125550001', from: '+13125550002', text: 'Hello' });
} catch (err) {
if (err instanceof Telnyx.APIConnectionError) {
console.error('Network error — check connectivity and retry');
} else if (err instanceof Telnyx.RateLimitError) {
// 429: rate limited — wait and retry with exponential backoff
const retryAfter = err.headers?.['retry-after'] || 1;
await new Promise(r => setTimeout(r, retryAfter * 1000));
} else if (err instanceof Telnyx.APIError) {
console.error(`API error ${err.status}: ${err.message}`);
if (err.status === 422) {
console.error('Validation error — check required fields and formats');
}
}
}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`
// Automatically fetches more pages as needed.
for await (const clusterListResponse of client.ai.clusters.list()) {
console.log(clusterListResponse.task_id);
}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)
const response = await client.ai.clusters.compute({ bucket: 'my-bucket' });
console.log(response.data);Returns: `task_id` (string)
`GET /ai/clusters/{task_id}`
const cluster = await client.ai.clusters.retrieve('task_id');
console.log(cluster.data);Returns: `bucket` (string), `clusters` (array[object]), `status` (enum: pending, starting, running, completed, failed)
`DELETE /ai/clusters/{task_id}`
await client.ai.clusters.delete('task_id');`GET /ai/clusters/{task_id}/graph`
const response = await client.ai.clusters.fetchGraph('task_id');
console.log(response);
const content = await response.blob();
console.log(content);List all available integrations.
`GET /ai/integrations`
const integrations = await client.ai.integrations.list(); console.log(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`
const connections = await client.ai.integrations.connections.list(); console.log(connections.data);
Returns: `allowed_tools` (array[string]), `id` (string), `integration_id` (string)
Get user setup integrations
`GET /ai/integrations/connections/{user_connection_id}`
const connection = await client.ai.integrations.connections.retrieve('user_connection_id');
console.log(connection.data);Returns: `allowed_tools` (array[string]), `id` (string), `integration_id` (string)
Delete a specific integration connection.
`DELETE /ai/integrations/connections/{user_connection_id}`
await client.ai.integrations.connections.delete('user_connection_id');Retrieve integration details
`GET /ai/integrations/{integration_id}`
const integration = await client.ai.integrations.retrieve('integration_id');
console.log(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`
const globalIPAllowedPorts = await client.globalIPAllowedPorts.list(); console.log(globalIPAllowedPorts.data);
Returns: `first_port` (integer), `id` (uuid), `last_port` (integer), `name` (string), `protocol_code` (string), `record_type` (string)
`GET /global_ip_assignment_health`
const globalIPAssignmentHealth = await client.globalIPAssignmentHealth.retrieve(); console.log(globalIPAssignmentHealth.data);
Returns: `global_ip` (object), `global_ip_assignment` (object), `health` (object), `timestamp` (da
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.