telnyx-ai-inference-ruby

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

Ruby guidance for calling Telnyx’s hosted AI and communications services, including language models, text embeddings, and call analysis. It includes Ruby SDK examples and error-handling patterns.

In plain words
What is it for?
Use it when adding AI-generated text, embeddings, or call summaries and insights to a Ruby application through Telnyx APIs.
Why use it?
It reduces the work of figuring out how to connect a Ruby application to Telnyx and how to respond to failed requests, such as invalid credentials, network problems, or rate limits.

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

Good fit Use it when adding AI-generated text, embeddings, or call summaries and insights to a Ruby application through Telnyx APIs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/team-telnyx/ai/telnyx-ai-inference-ruby
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.

Any agent
npx skills add team-telnyx/ai --skill telnyx-ai-inference-ruby
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-ruby

README.md
[![agentmods](https://agentmods.dev/badge/skills/team-telnyx/ai/telnyx-ai-inference-ruby/github.svg)](https://agentmods.dev/skills/team-telnyx/ai/telnyx-ai-inference-ruby)
Your own site
<a href="https://agentmods.dev/skills/team-telnyx/ai/telnyx-ai-inference-ruby"><img src="https://agentmods.dev/badge/skills/team-telnyx/ai/telnyx-ai-inference-ruby/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for telnyx-ai-inference-ruby

Your own site · 80×15
<a href="https://agentmods.dev/skills/team-telnyx/ai/telnyx-ai-inference-ruby"><img src="https://agentmods.dev/badge/skills/team-telnyx/ai/telnyx-ai-inference-ruby.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 6,663 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 94% 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.00036 $0.06663
Opus 5 $0.00018 $0.03331
Sonnet 5 $0.00007 $0.01333
Haiku 4.5 $0.00004 $0.00666

Measured 9d ago against content hash 4af6d09ed419, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

telnyx-ai-inference-ruby 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 9d 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

94% identical to telnyx-ai-inference-curl — 550 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-ruby/SKILL.md · 763 lines

How it starts

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

Telnyx Ai Inference - Ruby

Installation

gem install telnyx

Setup

require "telnyx"

client = Telnyx::Client.new(
  api_key: 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:

begin
  result = client.messages.send_(to: "+13125550001", from: "+13125550002", text: "Hello")
rescue Telnyx::Errors::APIConnectionError
  puts "Network error — check connectivity and retry"
rescue Telnyx::Errors::RateLimitError
  # 429: rate limited — wait and retry with exponential backoff
  sleep(1) # Check Retry-After header for actual delay
rescue Telnyx::Errors::APIStatusError => e
  puts "API error #{e.status}: #{e.message}"
  if e.status == 422
    puts "Validation error — check required fields and formats"
  end
end

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: Use .auto_paging_each for automatic iteration: page.auto_paging_each { |item| puts item.id }.

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

response = client.ai.audio.transcribe(model: :"distil-whisper/distil-large-v2")

puts(response)

Returns: duration (number), segments (array[object]), text (string), words (array[object])

Create a chat completion

Deprecated: Use POST /v2/ai/openai/chat/completions instead. Chat with a language model. This endpoint is consistent with the OpenAI Chat Completions API and may be used with the OpenAI JS or Python SDK.

Read the full file on GitHub · 763 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. 9d ago First seen · 763 lines · 36 tokens per session scan A 4af6d09ed419

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

dspy-ruby

This skill should be used when working with DSPy.rb, a Ruby framework for building type-safe, composable LLM applications. Use this when implementing predictable AI features, creating LLM signatures and modules, configuring language model providers (OpenAI, Anthropic, Gemini, Ollama), building agent systems with…

davekilleen/Dex · 81 tokens

rails-dev

Opinionated Rails conventions: rich models, concerns, CRUD-everything, state-as-records, minimal dependencies, Minitest with fixtures. Load this skill BEFORE any code-level thinking, not only before editing a file. It is required the moment a task touches Rails code in ANY way: designing or even just discussing a data…

tech-leads-club/agent-skills · 199 tokens

standalone-python-scripts

Skill "standalone-python-scripts" from iloveitaly/llm-ide-rules, covering standalone python scripts, /// script, requires-python = ">=3.13", dependencies = [] and ///.

iloveitaly/llm-ide-rules · 9 tokens

pytrio-skill

A Python software development kit for sending large-model training and inference work to the remote TRIO service. Your local code prepares data and controls the process while the service performs model calculations and saves weights.

SwanHubX/pytrio-skill · 191 tokens

databricks-python-sdk

Databricks development guidance including Python SDK, Databricks Connect, CLI, and REST API. Use when working with databricks-sdk, databricks-connect, or Databricks APIs.

databricks-solutions/ai-dev-kit · 46 tokens

dhh-rails-style

This skill should be used when writing Ruby and Rails code in DHH's distinctive 37signals style. It applies when writing Ruby code, Rails applications, creating models, controllers, or any Ruby file. Triggers on Ruby/Rails code generation, refactoring requests, code review, or when the user mentions DHH, 37signals…

davekilleen/Dex · 115 tokens