← 返回 Skills 市场
teamtelnyx

Telnyx Toolkit

作者 teamtelnyx · GitHub ↗ · v1.5.0
cross-platform ⚠ suspicious
2622
总下载
1
收藏
0
当前安装
12
版本数
在 OpenClaw 中安装
/install telnyx-toolkit
功能描述
Complete Telnyx toolkit — ready-to-use tools (STT, TTS, RAG, Networking, 10DLC) plus SDK documentation for JavaScript, Python, Go, Java, and Ruby.
安全使用建议
This skill appears to be a comprehensive Telnyx toolkit (many auto-generated SDK docs and tools), but it contains scripts that do more than simple API calls: they obtain GitHub tokens, solve PoW for account signup, modify sudoers, configure/ expose network interfaces, upload local files to Telnyx Storage, and the SKILL.md explicitly tells the agent to attempt account top-ups (charge the stored payment method) without prompting the user. Before installing: 1) Verify the author/source (no homepage listed; owner id unknown). Prefer the official Telnyx distribution or confirm the package origin. 2) Inspect the companion SKILL.md and scripts (especially getting-started/*, tools/network/*, tools/storage-backup/*, and any get-gh-token/refresh-gh-scopes scripts) to see where credentials/tokens are sent and what commands run as root. 3) Do not run privileged network scripts on a production machine — test in an isolated VM/container first. 4) Be cautious about providing TELNYX_API_KEY to an agent that can run autonomously; consider restricting autonomous invocation or running scripts manually. 5) Pay attention to the auto-top-up behavior: ensure you want the skill to attempt payments using your stored payment method. If you cannot audit the scripts or confirm the package origin, avoid installing or run only the documentation/SDK files without executing any scripts.
功能分析
Type: OpenClaw Skill Name: telnyx-toolkit Version: 1.5.0 The skill is classified as suspicious due to several high-risk capabilities. Notably, 'tools/network/setup-sudoers.sh' modifies the system's sudoers file to allow passwordless execution of WireGuard commands, posing a significant privilege escalation risk. Additionally, 'tools/storage-backup/backup.sh' and 'backup.py' perform broad backups of the entire OpenClaw workspace (including 'memory', 'knowledge', 'scripts', 'skills') to Telnyx Storage, which could unintentionally exfiltrate sensitive user data if the workspace contains it. Furthermore, 'tools/voice-sip/src/dev.ts' executes other CLI tools ('openclaw', 'clawdbot', 'moltbook') via `child_process.execAsync`, creating a potential command injection vulnerability if the arguments passed to these CLIs can be manipulated by the agent. Direct handling of GitHub OAuth tokens and other sensitive API keys in various scripts also presents a risk if not perfectly secured.
能力评估
Purpose & Capability
The declared purpose (Telnyx toolkit: STT, TTS, RAG, Networking, 10DLC and SDK docs) matches most files (many auto-generated SDK SKILL.md files). Requiring TELNYX_API_KEY is appropriate. However, the bundle also includes scripts that touch unrelated subsystems (GitHub auth scripts, PoW solver for signup, network setup scripts that change sudoers and expose public IPs, backup scripts that upload local data). Those capabilities can be legitimate for account signup, upgrades, mesh networking, and backups, but they go beyond a simple SDK/docs/toolkit and are not fully reflected in the declared requirements or description.
Instruction Scope
The top-level SKILL.md instructs the agent to use the TELNYX API and to run companion skills. Companion scripts (getting-started/telnyx-freemium-upgrade, getting-started/telnyx-bot-signup) and tools (network, storage-backup, voice-sip) reference reading/writing local config (~/.telnyx/upgrade.json, ~/.config/telnyx/config.json), obtaining GitHub auth tokens, modifying sudoers, exposing public IPs, joining mesh networks, and uploading/backing-up local files to Telnyx Storage. Notably, SKILL.md advises 'do not prompt the user about this upfront — just attempt the top-up when needed' (i.e., charge stored payment method automatically). Those instructions give an agent broad discretion to read local state, perform network/system modifications, and trigger financial transactions — scope creep relative to a passive documentation/sdk skill.
Install Mechanism
There is no external install spec (instruction-only in registry metadata), so nothing is pulled from arbitrary URLs at install time — that reduces supply-chain risk. However, the skill package itself contains many executable scripts and code files that will be present on disk when the skill is installed; those scripts can be executed by the agent or the user. No direct remote downloads in the provided metadata were found.
Credentials
The skill declares a single required env var (TELNYX_API_KEY) which is appropriate for Telnyx API access. But included scripts reference other credentials and auth flows (GitHub token acquisition/refresh scripts, OAuth flows referenced in companion SKILLs) and local config files. Those additional credentials are not declared in requires.env. The package also contains workflows that will cause charges via the account's stored payment method (top-ups) without prompting, which is a material side-effect that should be explicitly highlighted and consented to.
Persistence & Privilege
The skill does not request 'always: true' and is not forced into every agent run. Model invocation is allowed (default), meaning the agent could autonomously execute included scripts. Combined with the presence of privileged operations (setup-sudoers.sh, public IP exposure scripts, backing up arbitrary local files to remote storage, and auto top-up behavior), autonomous invocation increases the blast radius. This is not inherently disqualifying, but it is an important risk factor the user should consider.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install telnyx-toolkit
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /telnyx-toolkit 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.5.0
Added Balance & Payments section: check balance, auto-recharge status, and add funds via stored payment transactions endpoint. Payment error decision tree for smart routing between upgrade and top-up flows.
v1.4.2
Re-attempt
v1.4.1
Added resend magic link endpoint to bot signup flow as fallback when verification email doesn't arrive or expires.
v1.4.0
Added Balance & Payments section: check balance (GET /v2/balance) and add funds (POST /v2/payment/stored_payment_transactions) with error handling and trigger detection. Added resend magic link endpoint to bot signup flow. Added .gitignore.
v1.3.1
Re-publish v1.3.0 without IntelliJ IDE files. No content changes.
v1.3.0
Added Getting Started skills: telnyx-bot-signup (automated PoW-based account creation with PoW solver) and telnyx-freemium-upgrade (GitHub/LinkedIn identity verification for professional tier upgrade). Updated root SKILL.md and README with Getting Started section. Added terms_of_service flag to bot signup flow.
v1.2.0
Added push-notification-tester skill for WebRTC SDKs (iOS APNs + Android FCM)
v1.1.0
- Added new "missions" tool for AI agent task tracking, voice/SMS assistants, and scheduled calls. - Introduced "embeddings" tool for Telnyx-native semantic search and text embeddings. - Updated usage examples and documentation to include the new "missions" and "embeddings" tools. - Expanded the tools list in SKILL.md to reflect all new capabilities. - Added detailed tool and script documentation files for the new features.
v1.0.3
Major update: The Telnyx Toolkit now features ready-to-use tools and reorganized SDK documentation. - Introduced a new structure separating standalone tools (e.g., STT, TTS, Networking, RAG, 10DLC Registration) from SDK reference. - Added a clear directory layout for quick navigation between tools, APIs, and WebRTC client guides. - Replaced the module-based documentation with per-language SDK docs for every Telnyx API capability, covering JavaScript, Python, Go, Java, and Ruby. - Expanded examples for using tools directly from the command line. - Simplified and updated the main documentation (SKILL.md) to reflect these changes.
v1.0.2
Re-attempt
v1.0.1
- Version bump to 1.0.1 with no file changes detected. - No updates or modifications to documentation or functionality.
v1.0.0
Initial release of Telnyx Toolkit skill. - Provides complete access to Telnyx APIs: Voice, Messaging, Numbers, AI, Storage, WebRTC, and more. - Supports JavaScript, Python, Go, Java, and Ruby. - Modular structure with clear documentation paths for each capability. - Includes utility scripts for speech-to-text and text-to-speech. - Requires TELNYX_API_KEY as an environment variable for authentication.
元数据
Slug telnyx-toolkit
版本 1.5.0
许可证
累计安装 0
当前安装数 0
历史版本数 12
常见问题

Telnyx Toolkit 是什么?

Complete Telnyx toolkit — ready-to-use tools (STT, TTS, RAG, Networking, 10DLC) plus SDK documentation for JavaScript, Python, Go, Java, and Ruby. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2622 次。

如何安装 Telnyx Toolkit?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install telnyx-toolkit」即可一键安装,无需额外配置。

Telnyx Toolkit 是免费的吗?

是的,Telnyx Toolkit 完全免费(开源免费),可自由下载、安装和使用。

Telnyx Toolkit 支持哪些平台?

Telnyx Toolkit 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Telnyx Toolkit?

由 teamtelnyx(@teamtelnyx)开发并维护,当前版本 v1.5.0。

💬 留言讨论