LaunchKit · 2026
Back to Skills

Telnyx API integration for Clawdbot.

0
653 downloads
by @teamtelnyx

Setup & Installation

openclaw skills install @teamtelnyx/telnyx-cli

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install telnyx-cli

Version History

v1.1.0Feb 19, 2026 - Version note by skill developer:

Added companion skills coordination layer: pre-flight checklist (CLI installed, API key exists, key valid), auto-handoff to telnyx-bot-signup for account creation/signin/key refresh, auto-handoff to telnyx-freemium-upgrade when freemium restrictions are hit, upgrade cache awareness, and fallback messages when companion skills are not installed.

What This Skill Does

Telnyx CLI integration for sending SMS, email, and WhatsApp messages, managing phone numbers, querying call history, and debugging webhooks. All operations authenticate via an API key stored in ~/.config/telnyx/config.json.

Scripting and automating Telnyx operations from the command line avoids writing API client code or navigating the portal manually.

When to use it

  • Send SMS alerts from cron jobs or automation scripts
  • Search and purchase phone numbers by country and area code
  • Retry failed webhook deliveries during an incident
  • Export call logs to CSV for billing or monthly review
  • Check account balance before running a bulk messaging campaign

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Send an SMS from +15551234567 to +15559876543 saying 'Your order is ready'

AGENT
  1. 1Verify telnyx CLI is installed and API key exists in ~/.config/telnyx/config.json
  2. 2Run telnyx account get to confirm the key is valid
  3. 3Run telnyx message send --from +15551234567 --to +15559876543 --text "Your order is ready"
  4. 4Retrieve delivery status with telnyx message get MESSAGE_ID
OUTPUT

SMS sent and delivery status confirmed with message ID

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

Telnyx account (portal.telnyx.com)Telnyx API key from portal.telnyx.com/#/app/api-keys@telnyx/api-cli installed globally (npm install -g @telnyx/api-cli)