cursorrules — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited cursorrules (Rules) 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.
This repo is the one-stop shop for AI Agents and AI-first developers building with Telnyx.
[!NOTE] This repository is a work in progress under active development. We are continuously improving based on testing and feedback. Contributions and feedback encouraged!
Install the unified Telnyx plugin to give your AI coding assistant Telnyx MCP server access and 228 Agent Skills covering messaging, voice, numbers, AI, IoT, WebRTC, Twilio migration, and more.
Empowers coding agents to generate correct, production-ready code without relying on pre-training or fragile doc retrieval.
Step 1. Add the Telnyx marketplace (one-time setup):
/plugin marketplace add team-telnyx/aiStep 2. Install the plugin:
/plugin install telnyx@telnyx gemini extensions install https://github.com/team-telnyx/aiInstall the Telnyx plugin for OpenCode to add Telnyx as a model provider with automatic auth and a TUI for managing hosted models.
# Local (current project only)
opencode plugin @telnyx/opencode
# Global (all projects)
opencode plugin -g @telnyx/opencodeSee plugins/opencode/README.md for full setup and configuration.
[!NOTE] Note: Our Cursor Marketplace listing is pending.
In the meantime, install skills via the Skills CLI.
Add the Telnyx MCP server to your project's .cursor/mcp.json:
{
"mcpServers": {
"telnyx": {
"type": "http",
"url": "https://api.telnyx.com/v2/mcp"
}
}
}Finalized Telnyx harness plugin repositories for OpenClaw and Hermes integrations:
OpenClaw
| Name | Description | Link |
|---|---|---|
| Voice Call | Telnyx-first Voice Call provider plugin for OpenClaw realtime voice agents | Repository |
| Text-to-Speech | Telnyx TTS speech provider for OpenClaw — carrier-grade voice synthesis | Repository |
| Speech-to-Text | Telnyx STT provider for OpenClaw audio transcription | Repository |
| Embeddings | Telnyx embedding provider for OpenClaw memory search | Repository |
| Intelligence | Telnyx AI text-inference provider plugin for OpenClaw | Repository |
| SMS Channel | OpenClaw channel plugin for SMS/MMS via Telnyx Messaging API | Repository |
Hermes
| Name | Description | Link |
|---|---|---|
| Intelligence | Telnyx AI text-inference provider plugin for Hermes | Repository |
| Text-to-Speech | Telnyx TTS speech-provider plugin for Hermes — WebSocket streaming, NaturalHD, and KokoroTTS voices | Repository |
| Speech-to-Text | Telnyx STT transcription-provider plugin for Hermes — streaming speech recognition | Repository |
| SMS | Telnyx SMS/MMS platform adapter for Hermes Agent | Repository |
Hermes voice-call support is in progress and will be added once finalized.
Integrate Telnyx APIs with popular agent frameworks through function calling — available in Python and TypeScript.
pip install telnyx-agent-toolkitfrom telnyx_agent_toolkit.openai.toolkit import TelnyxAgentToolkit
toolkit = TelnyxAgentToolkit(
api_key="KEY_...",
configuration={
"actions": {
"messaging": {"send_sms": True},
"numbers": {"search_phone_numbers": True, "buy_phone_number": True}
}
}
)
tools = toolkit.get_openai_tools()Works with OpenAI's Agent SDK, LangChain, and CrewAI. See Python docs for full usage and examples.
npm install @telnyx/agent-toolkitimport { TelnyxAgentToolkit } from "@telnyx/agent-toolkit/langchain";
const toolkit = new TelnyxAgentToolkit(process.env.TELNYX_API_KEY!, {
configuration: {
actions: {
messaging: { send_sms: true },
numbers: { search_phone_numbers: true, buy_phone_number: true },
},
},
});
const tools = toolkit.getLangChainTools();Works with LangChain and Vercel's AI SDK. See TypeScript docs for full usage. for the full list of commands and options.
Install individual skills for your coding assistant via the Skills CLI:
npx skills add team-telnyx/ai --skill <SKILL> --agent <AGENT>[!NOTE] See Skills for full install instrcuctions and comprehensive list of available skills
Composite commands that reduce multi-step Telnyx workflows to a single command. Built for AI agents and developers who want to provision infrastructure without orchestrating multiple API calls.
telnyx-agent setup-sms # Buy number + create messaging profile + assign
telnyx-agent setup-voice # Create SIP connection + buy number + assign
telnyx-agent setup-ai # Create AI assistant + buy number + wire together
telnyx-agent setup-porting # Check portability + create porting order + submit
telnyx-agent status # Account health overviewEvery command supports --json for machine-readable output.
See Agent CLI
Telnyx hosts a remote MCP server at https://api.telnyx.com/v2/mcp.
To run a local Telnyx MCP server using npx:
npx -y @telnyx/mcp --api-key=YOUR_TELNYX_API_KEYSee MCP for more details about the generic API MCP proxy.
tools/mcp-apps contains app-layer MCP servers with MCP Apps UI resources for focused Telnyx workflows. These are separate from the generic @telnyx/mcp proxy above.
Current apps:
tools/mcp-apps/apps/number-intelligence)tools/mcp-apps/apps/usage-cost-explorer)tools/mcp-apps/apps/voice-monitor)From tools/mcp-apps, use npm install, npm run typecheck, npm run build, and npm test.
Curl-first operational guides for common Telnyx workflows — SMS messaging, voice call control, AI assistants, phone numbers, porting, verification, webhooks, 10DLC registration, WireGuard networking, x402 payments, and Edge Compute handoff patterns.
For Edge Compute specifically, the goal is to make the handoff testable fast: start from a real telnyx-edge example, deploy it, and let team-telnyx/ai orchestrate against that live endpoint.
See Guides for the full list.
team-telnyx/ai does not currently own native Edge Compute lifecycle support.
Instead, this repo should be treated as the orchestration/discoverability layer, while the actual function lifecycle lives in the separate team-telnyx/edge-compute repo and the telnyx-edge CLI.
In practice:
team-telnyx/ai for agent workflows, capability discovery, and AI-oriented integration patternsteam-telnyx/edge-compute + telnyx-edge for function creation, deployment, secrets, bindings, and lifecycle managementThe intended end state is a clean bridge:
ai = orchestrates and explainsSee Edge Compute guide.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.