telnyx-ai-assistants-c…
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
Programmatic call control: make/receive calls, transfer, bridge, gather DTMF, stream audio. Real-time call events via webhooks.
$ npx -y skills add team-telnyx/ai --skill telnyx-voice-java --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/telnyx-voice-javaContext preview
The summary Claude sees to decide when to auto-load this skill.
Programmatic call control: make/receive calls, transfer, bridge, gather DTMF, stream audio. Real-time call events via webhooks.
name: telnyx-voice-java description: >- Programmatic call control: make/receive calls, transfer, bridge, gather DTMF, stream audio. Real-time call events via webhooks. metadata: author: telnyx product: voice language: java generated_by: telnyx-openapi-pipeline contract: v2
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
<!-- Maven -->
<dependency>
<groupId>com.telnyx.sdk</groupId>
<artifactId>telnyx</artifactId>
<version>6.89.0</version>
</dependency>
// Gradle
implementation("com.telnyx.sdk:telnyx:6.89.0")import com.telnyx.sdk.client.TelnyxClient; import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient; TelnyxClient client = TelnyxOkHttpClient.fromEnv();
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 com.telnyx.sdk.models.calls.CallDialParams;
import com.telnyx.sdk.models.calls.CallDialResponse;
CallDialParams params = CallDialParams.builder()
.connectionId("7267xxxxxxxxxxxxxx")
.from("+18005550101")
.to("+18005550100;secure=srtp")
.build();
CallDialResponse response = client.calls().dial(params);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 voice entrypoint. Agents need the async call-control identifiers returned here.
`client.calls().dial()` — `POST /calls`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `to` | string (E.164) | Yes | The DID or SIP URI to dial out to. | | `from` | string (E.164) | Yes | The `from` number to be used as the caller id presented to t... | | `connectionId` | string (UUID) | Yes | The ID of the Call Control App (formerly ID of the connectio... | | `timeoutSecs` | integer | No | The number of seconds that Telnyx will wait for the call to ... | | `billingGroupId` | string (UUID) | No | Use this field to set the Billing Group ID for the call. | | `clientState` | string | No | Use this field to add state to every subsequent webhook. | | ... | | | +56 optional params in [references/api-details.md](references/api-details.md) |
import com.telnyx.sdk.models.calls.CallDialParams;
import com.telnyx.sdk.models.calls.CallDialResponse;
CallDialParams params = CallDialParams.builder()
.connectionId("7267xxxxxxxxxxxxxx")
.from("+18005550101")
.to("+18005550100;secure=srtp")
.build();
CallDialResponse response = client.calls().dial(params);Primary response fields:
Primary inbound call-control command.
`client.calls().actions().answer()` — `POST /calls/{call_control_id}/actions/answer`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `callControlId` | string (UUID) | Yes | Unique identifier and token for controlling the call | | `billingGroupId` | string (UUID) | No | Use this field to set the Billing Group ID for the call. | | `clientState` | string | No | Use this field to add state to every subsequent webhook. | | `webhookUrl` | string (URL) | No | Use this field to override the URL for which Telnyx will sen... | | ... | | | +29 optional params in [references/api-details.md](references/api-details.md) |
import com.telnyx.sdk.models.calls.actions.ActionAnswerParams;
import com.telnyx.sdk.models.calls.actions.ActionAnswerResponse;
ActionAnswerResponse response = client.calls().actions().answer("v3:550e8400-e29b-41d4-a716-446655440000_gRU1OGRkYQ");Primary response fields:
Common post-answer control path with downstream webhook implications.
`client.calls().actions().transfer()` — `POST /calls/{call_control_id}/actions/transfer`
| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | `to` | string (E.164) | Yes | The DID or SIP URI
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.