Telnyx 10dlc Java logo

Telnyx 10dlc Java

Organization
team-telnyx
telnyx-10dlc-java

10DLC brand and campaign registration for US A2P messaging compliance. Assign phone numbers to campaigns.

Overview

Publisherteam-telnyx
Repositoryai
Skill nametelnyx-10dlc-java
Stars
217
Forks
21
Bundled files
1
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by team-telnyx on GitHub. Read the source before you install it.

Installation

Install the Telnyx 10dlc Java AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/team-telnyx/ai.git /tmp/ai
mkdir -p .claude/skills
cp -r /tmp/ai/providers/claude/plugins/telnyx-numbers/skills/telnyx-10dlc-java .claude/skills/telnyx-10dlc-java
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Telnyx 10dlc Java in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Telnyx 10dlc Java on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Telnyx 10dlc Java is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Telnyx 10DLC - Java

Installation

text
<!-- 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")

Setup

java
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.

Error Handling

All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:

java
import com.telnyx.sdk.models.messaging10dlc.brand.BrandCreateParams;
import com.telnyx.sdk.models.messaging10dlc.brand.EntityType;
import com.telnyx.sdk.models.messaging10dlc.brand.TelnyxBrand;
import com.telnyx.sdk.models.messaging10dlc.brand.Vertical;
BrandCreateParams params = BrandCreateParams.builder()
    .country("US")
    .displayName("ABC Mobile")
    .email("support@example.com")
    .entityType(EntityType.PRIVATE_PROFIT)
    .vertical(Vertical.TECHNOLOGY)
    .build();
TelnyxBrand telnyxBrand = client.messaging10dlc().brand().create(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).

Important Notes

  • Pagination: List methods return a page. Use .autoPager() for automatic iteration: for (var item : page.autoPager()) { ... }. For manual control, use .hasNextPage() and .nextPage().

Operational Caveats

  • 10DLC is sequential: create the brand first, then submit the campaign, then attach messaging infrastructure such as the messaging profile.
  • Registration calls are not enough by themselves. Messaging cannot use the campaign until the assignment step completes successfully.
  • Treat registration status fields as part of the control flow. Do not assume the campaign is send-ready until the returned status fields confirm it.

Reference Use Rules

Do not invent Telnyx parameters, enums, response fields, or webhook fields.

Core Tasks

Create a brand

Brand registration is the entrypoint for any US A2P 10DLC campaign flow.

client.messaging10dlc().brand().create()POST /10dlc/brand

ParameterTypeRequiredDescription
entityTypeobjectYesEntity type behind the brand.
displayNamestringYesDisplay name, marketing name, or DBA name of the brand.
countrystringYesISO2 2 characters country code.
emailstringYesValid email address of brand support contact.
verticalobjectYesVertical or industry segment of the brand.
companyNamestringNo(Required for Non-profit/private/public) Legal company name.
firstNamestringNoFirst name of business contact.
lastNamestringNoLast name of business contact.
...+16 optional params in references/api-details.md
java
import com.telnyx.sdk.models.messaging10dlc.brand.BrandCreateParams;
import com.telnyx.sdk.models.messaging10dlc.brand.EntityType;
import com.telnyx.sdk.models.messaging10dlc.brand.TelnyxBrand;
import com.telnyx.sdk.models.messaging10dlc.brand.Vertical;

BrandCreateParams params = BrandCreateParams.builder()
    .country("US")
    .displayName("ABC Mobile")
    .email("support@example.com")
    .entityType(EntityType.PRIVATE_PROFIT)
    .vertical(Vertical.TECHNOLOGY)
    .build();
TelnyxBrand telnyxBrand = client.messaging10dlc().brand().create(params);

Primary response fields:

  • telnyxBrand.brandId
  • telnyxBrand.identityStatus
  • telnyxBrand.status
  • telnyxBrand.displayName
  • telnyxBrand.state
  • telnyxBrand.altBusinessId

Submit a campaign

Campaign submission is the compliance-critical step that determines whether traffic can be provisioned.

client.messaging10dlc().campaignBuilder().submit()POST /10dlc/campaignBuilder

ParameterTypeRequiredDescription
brandIdstring (UUID)YesAlphanumeric identifier of the brand associated with this ca...
descriptionstringYesSummary description of this campaign.
usecasestringYesCampaign usecase.
ageGatedbooleanNoAge gated message content in campaign.
autoRenewalbooleanNoCampaign subscription auto-renewal option.
directLendingbooleanNoDirect lending or loan arrangement
...+29 optional params in references/api-details.md
java
import com.telnyx.sdk.models.messaging10dlc.campaign.TelnyxCampaignCsp;
import com.telnyx.sdk.models.messaging10dlc.campaignbuilder.CampaignBuilderSubmitParams;

CampaignBuilderSubmitParams params = CampaignBuilderSubmitParams.builder()
    .brandId("BXXXXXX")
    .description("Two-factor authentication messages")
    .usecase("2FA")
    .sample1("Your verification code is {{code}}")
    .build();
TelnyxCampaignCsp telnyxCampaignCsp = client.messaging10dlc().campaignBuilder().submit(params);

Primary response fields:

  • telnyxCampaignCsp.campaignId
  • telnyxCampaignCsp.brandId
  • telnyxCampaignCsp.campaignStatus
  • telnyxCampaignCsp.submissionStatus
  • telnyxCampaignCsp.failureReasons
  • telnyxCampaignCsp.status

Assign a messaging profile to a campaign

Messaging profile assignment is the practical handoff from registration to send-ready messaging infrastructure.

client.messaging10dlc().phoneNumberAssignmentByProfile().assign()POST /10dlc/phoneNumberAssignmentByProfile

ParameterTypeRequiredDescription
messagingProfileIdstring (UUID)YesThe ID of the messaging profile that you want to link to the...
campaignIdstring (UUID)YesThe ID of the campaign you want to link to the specified mes...
tcrCampaignIdstring (UUID)NoThe TCR ID of the shared campaign you want to link to the sp...
java
import com.telnyx.sdk.models.messaging10dlc.phonenumberassignmentbyprofile.PhoneNumberAssignmentByProfileAssignParams;
import com.telnyx.sdk.models.messaging10dlc.phonenumberassignmentbyprofile.PhoneNumberAssignmentByProfileAssignResponse;

PhoneNumberAssignmentByProfileAssignParams params = PhoneNumberAssignmentByProfileAssignParams.builder()
    .messagingProfileId("4001767e-ce0f-4cae-9d5f-0d5e636e7809")
    .campaignId("CXXX001")
    .build();
PhoneNumberAssignmentByProfileAssignResponse response = client.messaging10dlc().phoneNumberAssignmentByProfile().assign(params);

Primary response fields:

  • response.messagingProfileId
  • response.campaignId
  • response.taskId
  • response.tcrCampaignId

Webhook Verification

Telnyx signs webhooks with Ed25519. Each request includes telnyx-signature-ed25519 and telnyx-timestamp headers. Always verify signatures in production:

java
import com.telnyx.sdk.core.UnwrapWebhookParams;
import com.telnyx.sdk.core.http.Headers;

// In your webhook handler (e.g., Spring — use raw body):
@PostMapping("/webhooks")
public ResponseEntity<String> handleWebhook(
    @RequestBody String payload,
    HttpServletRequest request) {
  try {
    Headers headers = Headers.builder()
        .put("telnyx-signature-ed25519", request.getHeader("telnyx-signature-ed25519"))
        .put("telnyx-timestamp", request.getHeader("telnyx-timestamp"))
        .build();
    var event = client.webhooks().unwrap(
        UnwrapWebhookParams.builder()
            .body(payload)
            .headers(headers)
            .build());
    // Signature valid — process the event
    System.out.println("Received webhook event");
    return ResponseEntity.ok("OK");
  } catch (Exception e) {
    System.err.println("Webhook verification failed: " + e.getMessage());
    return ResponseEntity.badRequest().body("Invalid signature");
  }
}

Webhooks

These webhook payload fields are inline because they are part of the primary integration path.

Campaign Status Update

FieldTypeDescription
brandIdstringBrand ID associated with the campaign.
campaignIdstringThe ID of the campaign.
createDatestringUnix timestamp when campaign was created.
cspIdstringAlphanumeric identifier of the CSP associated with this campaign.
isTMobileRegisteredbooleanIndicates whether the campaign is registered with T-Mobile.
typeenum: TELNYX_EVENT, REGISTRATION, MNO_REVIEW, TELNYX_REVIEW, NUMBER_POOL_PROVISIONED, NUMBER_POOL_DEPROVISIONED, TCR_EVENT, VERIFIED
descriptionstringDescription of the event.
statusenum: ACCEPTED, REJECTED, DORMANT, success, failedThe status of the campaign.

If you need webhook fields that are not listed inline here, read the webhook payload reference before writing the handler.


Important Supporting Operations

Use these when the core tasks above are close to your flow, but you need a common variation or follow-up step.

Get Brand

Inspect the current state of an existing brand registration.

client.messaging10dlc().brand().retrieve()GET /10dlc/brand/{brandId}

ParameterTypeRequiredDescription
brandIdstring (UUID)YesUnique identifier of the brand.
java
import com.telnyx.sdk.models.messaging10dlc.brand.BrandRetrieveParams;
import com.telnyx.sdk.models.messaging10dlc.brand.BrandRetrieveResponse;

BrandRetrieveResponse brand = client.messaging10dlc().brand().retrieve("BXXX001");

Primary response fields:

  • brand.status
  • brand.state
  • brand.altBusinessId
  • brand.altBusinessIdType
  • brand.assignedCampaignsCount
  • brand.brandId

Qualify By Usecase

Fetch the current state before updating, deleting, or making control-flow decisions.

client.messaging10dlc().campaignBuilder().brand().qualifyByUsecase()GET /10dlc/campaignBuilder/brand/{brandId}/usecase/{usecase}

ParameterTypeRequiredDescription
usecasestringYesUnique identifier of the usecase.
brandIdstring (UUID)YesUnique identifier of the brand.
java
import com.telnyx.sdk.models.messaging10dlc.campaignbuilder.brand.BrandQualifyByUsecaseParams;
import com.telnyx.sdk.models.messaging10dlc.campaignbuilder.brand.BrandQualifyByUsecaseResponse;

BrandQualifyByUsecaseParams params = BrandQualifyByUsecaseParams.builder()
    .brandId("BXXX001")
    .usecase("CUSTOMER_CARE")
    .build();
BrandQualifyByUsecaseResponse response = client.messaging10dlc().campaignBuilder().brand().qualifyByUsecase(params);

Primary response fields:

  • response.annualFee
  • response.maxSubUsecases
  • response.minSubUsecases
  • response.mnoMetadata
  • response.monthlyFee
  • response.quarterlyFee

Create New Phone Number Campaign

Create or provision an additional resource when the core tasks do not cover this flow.

client.messaging10dlc().phoneNumberCampaigns().create()POST /10dlc/phone_number_campaigns

ParameterTypeRequiredDescription
phoneNumberstring (E.164)YesThe phone number you want to link to a specified campaign.
campaignIdstring (UUID)YesThe ID of the campaign you want to link to the specified pho...
java
import com.telnyx.sdk.models.messaging10dlc.phonenumbercampaigns.PhoneNumberCampaign;
import com.telnyx.sdk.models.messaging10dlc.phonenumbercampaigns.PhoneNumberCampaignCreate;

PhoneNumberCampaignCreate params = PhoneNumberCampaignCreate.builder()
    .campaignId("4b300178-131c-d902-d54e-72d90ba1620j")
    .phoneNumber("+18005550199")
    .build();
PhoneNumberCampaign phoneNumberCampaign = client.messaging10dlc().phoneNumberCampaigns().create(params);

Primary response fields:

  • phoneNumberCampaign.assignmentStatus
  • phoneNumberCampaign.brandId
  • phoneNumberCampaign.campaignId
  • phoneNumberCampaign.createdAt
  • phoneNumberCampaign.failureReasons
  • phoneNumberCampaign.phoneNumber

Get campaign

Inspect the current state of an existing campaign registration.

client.messaging10dlc().campaign().retrieve()GET /10dlc/campaign/{campaignId}

ParameterTypeRequiredDescription
campaignIdstring (UUID)YesUnique identifier of the campaign.
java
import com.telnyx.sdk.models.messaging10dlc.campaign.CampaignRetrieveParams;
import com.telnyx.sdk.models.messaging10dlc.campaign.TelnyxCampaignCsp;

TelnyxCampaignCsp telnyxCampaignCsp = client.messaging10dlc().campaign().retrieve("CXXX001");

Primary response fields:

  • telnyxCampaignCsp.status
  • telnyxCampaignCsp.ageGated
  • telnyxCampaignCsp.autoRenewal
  • telnyxCampaignCsp.billedDate
  • telnyxCampaignCsp.brandDisplayName
  • telnyxCampaignCsp.brandId

List Brands

Inspect available resources or choose an existing resource before mutating it.

client.messaging10dlc().brand().list()GET /10dlc/brand

ParameterTypeRequiredDescription
sortenum (assignedCampaignsCount, -assignedCampaignsCount, brandId, -brandId, createdAt, ...)NoSpecifies the sort order for results.
pageintegerNoPage number to retrieve (1-based).
recordsPerPageintegerNonumber of records per page.
...+6 optional params in references/api-details.md
java
import com.telnyx.sdk.models.messaging10dlc.brand.BrandListPage;
import com.telnyx.sdk.models.messaging10dlc.brand.BrandListParams;

BrandListPage page = client.messaging10dlc().brand().list();

Primary response fields:

  • page.page
  • page.records
  • page.totalRecords

Get Brand Feedback By Id

Fetch the current state before updating, deleting, or making control-flow decisions.

client.messaging10dlc().brand().getFeedback()GET /10dlc/brand/feedback/{brandId}

ParameterTypeRequiredDescription
brandIdstring (UUID)YesUnique identifier of the brand.
java
import com.telnyx.sdk.models.messaging10dlc.brand.BrandGetFeedbackParams;
import com.telnyx.sdk.models.messaging10dlc.brand.BrandGetFeedbackResponse;

BrandGetFeedbackResponse response = client.messaging10dlc().brand().getFeedback("BXXX001");

Primary response fields:

  • response.brandId
  • response.category

Additional Operations

Use the core tasks above first. The operations below are indexed here with exact SDK methods and required params; use references/api-details.md for full optional params, response schemas, and lower-frequency webhook payloads. Before using any operation below, read the optional-parameters section and the response-schemas section so you do not guess missing fields.

OperationSDK methodEndpointUse whenRequired params
Get Brand SMS OTP Statusclient.messaging10dlc().brand().getSmsOtpByReference()GET /10dlc/brand/smsOtp/{referenceId}Fetch the current state before updating, deleting, or making control-flow decisions.referenceId
Update Brandclient.messaging10dlc().brand().update()PUT /10dlc/brand/{brandId}Inspect the current state of an existing brand registration.entityType, displayName, country, email, +2 more
Delete Brandclient.messaging10dlc().brand().delete()DELETE /10dlc/brand/{brandId}Inspect the current state of an existing brand registration.brandId
Resend brand 2FA emailclient.messaging10dlc().brand().resend2faEmail()POST /10dlc/brand/{brandId}/2faEmailCreate or provision an additional resource when the core tasks do not cover this flow.brandId
List External Vettingsclient.messaging10dlc().brand().externalVetting().list()GET /10dlc/brand/{brandId}/externalVettingFetch the current state before updating, deleting, or making control-flow decisions.brandId
Order Brand External Vettingclient.messaging10dlc().brand().externalVetting().order()POST /10dlc/brand/{brandId}/externalVettingCreate or provision an additional resource when the core tasks do not cover this flow.evpId, vettingClass, brandId
Import External Vetting Recordclient.messaging10dlc().brand().externalVetting().imports()PUT /10dlc/brand/{brandId}/externalVettingModify an existing resource without recreating it.evpId, vettingId, brandId
Revet Brandclient.messaging10dlc().brand().revet()PUT /10dlc/brand/{brandId}/revetModify an existing resource without recreating it.brandId
Get Brand SMS OTP Status by Brand IDclient.messaging10dlc().brand().retrieveSmsOtpStatus()GET /10dlc/brand/{brandId}/smsOtpFetch the current state before updating, deleting, or making control-flow decisions.brandId
Trigger Brand SMS OTPclient.messaging10dlc().brand().triggerSmsOtp()POST /10dlc/brand/{brandId}/smsOtpCreate or provision an additional resource when the core tasks do not cover this flow.pinSms, successSms, brandId
Verify Brand SMS OTPclient.messaging10dlc().brand().verifySmsOtp()PUT /10dlc/brand/{brandId}/smsOtpModify an existing resource without recreating it.otpPin, brandId
List Campaignsclient.messaging10dlc().campaign().list()GET /10dlc/campaignInspect available resources or choose an existing resource before mutating it.None
Accept Shared Campaignclient.messaging10dlc().campaign().acceptSharing()POST /10dlc/campaign/acceptSharing/{campaignId}Create or provision an additional resource when the core tasks do not cover this flow.campaignId
Get Campaign Costclient.messaging10dlc().campaign().usecase().getCost()GET /10dlc/campaign/usecase/costInspect available resources or choose an existing resource before mutating it.None
Update campaignclient.messaging10dlc().campaign().update()PUT /10dlc/campaign/{campaignId}Inspect the current state of an existing campaign registration.campaignId
Deactivate campaignclient.messaging10dlc().campaign().deactivate()DELETE /10dlc/campaign/{campaignId}Inspect the current state of an existing campaign registration.campaignId
Submit campaign appeal for manual reviewclient.messaging10dlc().campaign().submitAppeal()POST /10dlc/campaign/{campaignId}/appealCreate or provision an additional resource when the core tasks do not cover this flow.appealReason, campaignId
Get Campaign Mno Metadataclient.messaging10dlc().campaign().getMnoMetadata()GET /10dlc/campaign/{campaignId}/mnoMetadataFetch the current state before updating, deleting, or making control-flow decisions.campaignId
Get campaign operation statusclient.messaging10dlc().campaign().getOperationStatus()GET /10dlc/campaign/{campaignId}/operationStatusFetch the current state before updating, deleting, or making control-flow decisions.campaignId
Get OSR campaign attributesclient.messaging10dlc().campaign().osr().getAttributes()GET /10dlc/campaign/{campaignId}/osr/attributesFetch the current state before updating, deleting, or making control-flow decisions.campaignId
Get Sharing Statusclient.messaging10dlc().campaign().getSharingStatus()GET /10dlc/campaign/{campaignId}/sharingFetch the current state before updating, deleting, or making control-flow decisions.campaignId
List shared partner campaignsclient.messaging10dlc().partnerCampaigns().listSharedByMe()GET /10dlc/partnerCampaign/sharedByMeInspect available resources or choose an existing resource before mutating it.None
Get Sharing Statusclient.messaging10dlc().partnerCampaigns().retrieveSharingStatus()GET /10dlc/partnerCampaign/{campaignId}/sharingFetch the current state before updating, deleting, or making control-flow decisions.campaignId
List Shared Campaignsclient.messaging10dlc().partnerCampaigns().list()GET /10dlc/partner_campaignsInspect available resources or choose an existing resource before mutating it.None
Get Single Shared Campaignclient.messaging10dlc().partnerCampaigns().retrieve()GET /10dlc/partner_campaigns/{campaignId}Fetch the current state before updating, deleting, or making control-flow decisions.campaignId
Update Single Shared Campaignclient.messaging10dlc().partnerCampaigns().update()PATCH /10dlc/partner_campaigns/{campaignId}Modify an existing resource without recreating it.campaignId
Get Assignment Task Statusclient.messaging10dlc().phoneNumberAssignmentByProfile().retrieveStatus()GET /10dlc/phoneNumberAssignmentByProfile/{taskId}Fetch the current state before updating, deleting, or making control-flow decisions.taskId
Get Phone Number Statusclient.messaging10dlc().phoneNumberAssignmentByProfile().listPhoneNumberStatus()GET /10dlc/phoneNumberAssignmentByProfile/{taskId}/phoneNumbersFetch the current state before updating, deleting, or making control-flow decisions.taskId
List phone number campaignsclient.messaging10dlc().phoneNumberCampaigns().list()GET /10dlc/phone_number_campaignsInspect available resources or choose an existing resource before mutating it.None
Get Single Phone Number Campaignclient.messaging10dlc().phoneNumberCampaigns().retrieve()GET /10dlc/phone_number_campaigns/{phoneNumber}Fetch the current state before updating, deleting, or making control-flow decisions.phoneNumber
Create New Phone Number Campaignclient.messaging10dlc().phoneNumberCampaigns().update()PUT /10dlc/phone_number_campaigns/{phoneNumber}Modify an existing resource without recreating it.phoneNumber, campaignId, phoneNumber
Delete Phone Number Campaignclient.messaging10dlc().phoneNumberCampaigns().delete()DELETE /10dlc/phone_number_campaigns/{phoneNumber}Remove, detach, or clean up an existing resource.phoneNumber

For exhaustive optional parameters, full response schemas, and complete webhook payloads, see references/api-details.md.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Telnyx 10dlc Java AI skill do?

10DLC brand and campaign registration for US A2P messaging compliance. Assign phone numbers to campaigns.

Why use Telnyx 10dlc Java on TypingMind?

Because you install it once and use it with any model. Telnyx 10dlc Java is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Telnyx 10dlc Java in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/team-telnyx/ai/tree/main/providers/claude/plugins/telnyx-numbers/skills/telnyx-10dlc-java. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Telnyx 10dlc Java?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Telnyx 10dlc Java?

As many as you like. As long as a model supports skills, you can use Telnyx 10dlc Java with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Telnyx 10dlc Java AI skill free?

Yes. It is published on GitHub by team-telnyx under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇