telnyx-cli-557470 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited telnyx-cli-557470 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
The Telnyx CLI provides command-line access to the entire Telnyx API. Every API endpoint maps to a CLI command — 946 commands covering messaging, voice, numbers, IoT, AI, and more.
# Homebrew (macOS/Linux)
brew install telnyx/tap/telnyx
# Go install
go install github.com/team-telnyx/telnyx-go/cmd/telnyx@latest
# Or download a binary from GitHub releases:
# https://github.com/team-telnyx/telnyx-go/releasesexport TELNYX_API_KEY="KEY..."The CLI reads TELNYX_API_KEY from your environment. Set it once in your shell profile.
The CLI is fully self-documenting. Use --help at any level to explore:
# Top-level resource list
telnyx --help
# Commands for a specific resource
telnyx messages --help
# Full usage for a specific command
telnyx messages create --helpCommands follow a consistent pattern:
telnyx <resource> <action> [--flag value ...]Resources match API paths. Actions are list, create, get, update, delete, and resource-specific verbs.
telnyx messages create \
--from +15551234567 \
--to +15559876543 \
--text "Hello from the CLI"telnyx phone-numbers list --page-size 25telnyx available-phone-numbers list \
--country-code US \
--state CA \
--features smstelnyx number-orders create \
--phone-numbers +15551234567telnyx calls create \
--connection-id 1234567890 \
--from +15551234567 \
--to +15559876543telnyx sim-cards list --page-size 10telnyx assistants create \
--name "Support Agent" \
--model telnyx_aitelnyx balance get# Default: human-readable table
telnyx phone-numbers list
# JSON output for scripting
telnyx phone-numbers list --format json
# Pipe to jq for filtering
telnyx phone-numbers list --format json | jq '.data[].phone_number'| Use case | Recommended |
|---|---|
| Quick one-off operations | CLI |
| Shell scripts and automation | CLI |
| Application code | SDK (Python, JS, Go, Java, Ruby) |
| Interactive exploration | CLI |
| CI/CD pipelines | CLI or SDK |
| Complex business logic | SDK |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.