telnyx-ai-inference-javascript

telnyx-ai-inference-javascript is a skill for Claude Code, Codex from team-telnyx/ai. It costs 37 tokens per session (6,946 once invoked), scanned A, a copy of telnyx-ai-inference-curl, MIT.

JavaScript guidance for using Telnyx's APIs for language-model inference, text embeddings, and call analysis. It includes setup examples and handling for connection, authentication, validation, and rate-limit errors.

In plain words
What is it for?
Use it when adding Telnyx AI inference, embeddings, or call-insight and summary features to a JavaScript application.
Why use it?
It gives developers a defined way to connect JavaScript applications to Telnyx AI services and account for common API failures. This reduces uncertainty around installation, initialization, and error handling.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Part of the telnyx-ai plugin — 13 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/team-telnyx/ai/telnyx-ai-inference-javascript
Any agent
npx skills add team-telnyx/ai --skill telnyx-ai-inference-javascript
Clone the repo
git clone --depth 1 https://github.com/team-telnyx/ai

Made for: Claude Code, Codex.

Or install telnyx-ai, the plugin that ships this one along with the rest of its 13 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for telnyx-ai-inference-javascript

README.md
[![agentmods](https://agentmods.dev/badge/skills/team-telnyx/ai/telnyx-ai-inference-javascript.svg)](https://agentmods.dev/skills/team-telnyx/ai/telnyx-ai-inference-javascript)
Your own site
<a href="https://agentmods.dev/skills/team-telnyx/ai/telnyx-ai-inference-javascript"><img src="https://agentmods.dev/badge/skills/team-telnyx/ai/telnyx-ai-inference-javascript.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,946 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 91% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.06946
Opus 5 $0.00018 $0.03473
Sonnet 5 $0.00007 $0.01389
Haiku 4.5 $0.00004 $0.00695

Measured 6d ago against content hash 0c775b210e8b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

telnyx-ai-inference-javascript scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

91% identical to telnyx-ai-inference-curl — 571 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

providers/claude/plugins/telnyx-ai/skills/telnyx-ai-inference-javascript/SKILL.md · 784 lines

How it starts

The opening of the file, as written. The whole thing — 784 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Telnyx Ai Inference - JavaScript

Installation

npm install [email protected]

Setup

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.

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:

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

Important Notes

  • Pagination: List methods return an auto-paginating iterator. Use for await (const item of result) { ... } to iterate through all pages automatically.

Transcribe speech to text

Transcribe speech to text. This endpoint is consistent with the OpenAI Transcription API and may be used with the OpenAI JS or Python SDK.

POST /ai/audio/transcriptions

import fs from 'fs';

const response = await client.ai.audio.transcribe({ model: 'distil-whisper/distil-large-v2' });

console.log(response.text);

Read the full file on GitHub · 784 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 784 lines · 37 tokens per session scan A 0c775b210e8b

Subscribe to this mod's changes

telnyx-ai-inference-javascript is a skill published in the GitHub repository team-telnyx/ai (212 stars, last pushed yesterday), licensed MIT. It adds 37 tokens to every session and 6,946 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to telnyx-ai-inference-curl, differing in 571 lines, and is treated as a copy.

Related

Other skills, from other repositories

spark-training-gotchas

Preflight and diagnose the ten known failure modes for ML training on NVIDIA DGX Spark. Use when a training run on DGX Spark fails to start, OOMs below the 128GB limit, slows down mid-run, or before any multi-hour training job on GB10.

wshobson/agents · 63 tokens

9router

Entry point for 9Router — local/remote AI gateway with OpenAI-compatible REST for chat, image, TTS, embeddings, web search, web fetch. Use when the user mentions 9Router, NINEROUTERURL, or wants AI without writing provider boilerplate. This skill covers setup + indexes capability skills; fetch the relevant capability…

decolua/9router · 84 tokens

mongodb-search-and-ai

Guides MongoDB users through implementing and optimizing Atlas Search (full-text), Vector Search (semantic), and Hybrid Search solutions. Use this skill when users need to build search functionality for text-based queries (autocomplete, fuzzy matching, faceted search), semantic similarity (embeddings, RAG…

fcakyon/claude-codex-settings · 132 tokens

domain-creation

Guides you through creating a Honeydew domain — a governance object that scopes entity/field visibility and applies mandatory filters — ideal for setting up contexts for deep analysis. Also covers domain hierarchy — extending parent domains, inheritance and merge rules, multiple inheritance, and removing inherited…

honeydew-ai/honeydew-ai-coding-agents-plugins · 59 tokens

setup

Configure the Qdrant Power after installation. Use this skill for missing uvx, missing environment variables, unapproved environment variables, unavailable Qdrant tools, "Failed to connect" errors, and setup requests.

qdrant/mcp-server-qdrant · 45 tokens

RunAPI Model Explorer

Use when the user asks what RunAPI models are available, compares models, needs pricing, asks for required fields, searches by modality, or wants a recommendation. Triggers include "what models", "compare models", "cheapest", "pricing", "required params", "有哪些模型", "比较模型", and "价格".

runapi-ai/mcp · 71 tokens