telnyx-account-reports-ruby

telnyx-account-reports-ruby is a skill for Claude Code from team-telnyx/ai. It costs 29 tokens per session (7,297 once invoked), scanned A, a copy of telnyx-account-reports-curl, MIT.

A Ruby SDK guide for generating and retrieving account usage reports for billing, analytics, and reconciliation.

In plain words
What is it for?
Use it to collect usage data, support billing checks, analyse account activity, or compare records during reconciliation.
Why use it?
It removes the need to work out the reporting API setup and basic handling of failed requests.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the telnyx-platform plugin — 92 skills, 1 agent, 3 hooks shipped together

Good fit Use it to collect usage data, support billing checks, analyse account activity, or compare records during reconciliation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/team-telnyx/ai/telnyx-account-reports-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-account-reports-ruby
Clone the repo
git clone --depth 1 https://github.com/team-telnyx/ai

Made for: Claude Code.

Or install telnyx-platform, the plugin that ships this one along with the rest of its 92 skills, 1 agent, 3 hooks.

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-account-reports-ruby

README.md
[![agentmods](https://agentmods.dev/badge/skills/team-telnyx/ai/telnyx-account-reports-ruby/github.svg)](https://agentmods.dev/skills/team-telnyx/ai/telnyx-account-reports-ruby)
Your own site
<a href="https://agentmods.dev/skills/team-telnyx/ai/telnyx-account-reports-ruby"><img src="https://agentmods.dev/badge/skills/team-telnyx/ai/telnyx-account-reports-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-account-reports-ruby

Your own site · 80×15
<a href="https://agentmods.dev/skills/team-telnyx/ai/telnyx-account-reports-ruby"><img src="https://agentmods.dev/badge/skills/team-telnyx/ai/telnyx-account-reports-ruby.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,297 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 100% 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.00029 $0.07297
Opus 5 $0.00015 $0.03648
Sonnet 5 $0.00006 $0.01459
Haiku 4.5 $0.00003 $0.00730

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

Security

Grade A, and why

telnyx-account-reports-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 4d 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

100% identical to telnyx-account-reports-curl — 405 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-platform/skills/telnyx-account-reports-ruby/SKILL.md · 689 lines

How it starts

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

Telnyx Account Reports - 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 }.

List call events

Filters call events by given filter parameters. Events are ordered by occurred_at. If filter for leg_id or application_session_id is not present, it only filters events from the last 24 hours.

GET /call_events

page = client.call_events.list

puts(page)

Returns: call_leg_id (string), call_session_id (string), event_timestamp (string), metadata (object), name (string), record_type (enum: call_event), type (enum: command, webhook)

Create a ledger billing group report

POST /ledger_billing_group_reports

Read the full file on GitHub · 689 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. 4d ago First seen · 689 lines · 29 tokens per session scan A 59456b7c9503

Subscribe to this mod's changes

telnyx-account-reports-ruby is a skill published in the GitHub repository team-telnyx/ai (213 stars, last pushed yesterday), licensed MIT. It adds 29 tokens to every session and 7,297 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to telnyx-account-reports-curl, differing in 405 lines, and is treated as a copy.

Related

Other skills, from other repositories

company-funding-search

Find company funding history, investors, and investment details.

gooseworks-ai/goose-skills · 15 tokens

lov-skill-pricing

A pricing workflow for creating an explanation-backed pricing card for an AI agent skill. It considers creation and maintenance effort, user value, scarcity, buyer confidence, and distribution potential.

lovstudio/skills · 78 tokens

cargo-billing

Understand what Cargo is costing — remaining credits, usage broken down by workflow, connector, or agent, subscription state, and invoice history. Triggers: "how many credits do I have left", "what did that cost", "why is my bill so high", "am I about to run out", "will this fit in our budget", "show me my invoices"…

getcargohq/cargo-skills · 161 tokens

iblai-api-spend-caps

Manage an ibl.ai organization's LLM spend caps via the platform API — admin-imposed maximum LLM cost at three scopes (tenant-wide, one agent, or one user on one agent), each with a rolling interval (day/week/month/year), a hard-block or alert-only enforcement mode, and near-limit alert thresholds. Read the current…

iblai/api · 137 tokens

qmt-inner-backtest

A procedure for turning a trading strategy or research report into a QMT daily factor backtest script. QMT is a Chinese trading-platform environment, and a backtest simulates how a strategy would have traded using historical data.

dfkai/xtquantai · 96 tokens

tray-pagamentos

API de informações de pagamento da Tray (recurso payments). Cobre listar, consultar, criar, atualizar e excluir registros de pagamento (CRUD em /payments), além de consultar as opções de pagamento ativas da loja (/payments/options) e as configurações globais de pagamento (/payments/settings). Total de 7 endpoints.…

tray-tecnologia/tray-api-ai-plugin · 176 tokens