Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计提醒

telnyx-messaging-javascripttelnyx messaging JavaScript 测试

Agent Skill

用于辅助 Java 项目开发、面向对象设计、Spring 生态、Maven 或 Gradle 依赖和后端工程实践。它适合让 Agent 分析类结构、设计接口、整理服务分层、生成测试或检查常见代码坏味道。使用时需要结合项目已有架构、包结构和依赖版本,不应只按通用教程改代码;涉及数据库、事务、并发或框架配置时,应先确认运行环境和回归测试范围。

总安装

1,597

周安装

64

GitHub Stars

171

下载量

517
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:telnyx-messaging-javascript(telnyx messaging JavaScript 测试)
来源仓库:https://github.com/team-telnyx/skills
仓库路径:skills/telnyx-messaging-javascript
安装命令:
npx skills add https://github.com/team-telnyx/skills --skill telnyx-messaging-javascript
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/team-telnyx/skills --skill telnyx-messaging-javascript

简介

telnyx-messaging-javascript 用于辅助 Java 项目开发、面向对象设计、Spring 生态和后端工程实践。

  • 适合分析类结构、设计接口、整理服务分层、生成测试或检查常见代码坏味道。
  • 使用时需结合项目已有架构、包结构和依赖版本,避免仅按通用教程修改代码。
  • 涉及数据库、事务、并发或框架配置时,应先确认运行环境和回归测试范围。
  • 安装方式:通过 npx skills add 从 GitHub 仓库安装,具体用法请参考原始 README。

SKILL.md

Telnyx Messaging - JavaScript

Installation

npm install telnyx

Setup

import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: process.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:

try {
  const response = await client.messages.send({
      to: '+18445550001',
      from: '+18005550101',
      text: 'Hello from Telnyx!',
  });
} catch (err) {
  if (err instanceof Telnyx.APIConnectionError) {
    console.error('Network error — check connectivity and retry');
  } else if (err instanceof Telnyx.RateLimitError) {
    const retryAfter = err.headers?.['retry-after'] || 1;
    await new Promise(r => setTimeout(r, retryAfter * 1000));
  } else if (err instanceof Telnyx.APIError) {
    console.error(`API error ${err.status}: ${err.message}`);
    if (err.status === 422) {
      console.error('Validation error — check required fields and formats');
    }
  }
}

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

  • Phone numbers must be in E.164 format (e.g., +13125550001). Include the + prefix and country code. No spaces, dashes, or parentheses.
  • Pagination: List methods return an auto-paginating iterator. Use for await (const item of result) {...} to iterate through all pages automatically.

Operational Caveats

  • The sending number must already be assigned to the correct messaging profile before you send traffic from it.
  • US A2P long-code traffic must complete 10DLC registration before production sending or carriers will block or heavily filter messages.
  • Delivery webhooks are asynchronous. Treat the send response as acceptance of the request, not final carrier delivery.

Reference Use Rules

Do not invent Telnyx parameters, enums, response fields, or webhook fields.

Core Tasks

Send an SMS

Primary outbound messaging flow. Agents need exact request fields and delivery-related response fields.

client.messages.send()POST /messages

ParameterTypeRequiredDescription
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
fromstring (E.164)YesSending address (+E.164 formatted phone number, alphanumeric...
textstringYesMessage body (i.e., content) as a non-empty string.
messagingProfileIdstring (UUID)NoUnique identifier for a messaging profile.
mediaUrlsarray[string]NoA list of media URLs.
webhookUrlstring (URL)NoThe URL where webhooks related to this message will be sent.
...+7 optional params in references/api-details.md
const response = await client.messages.send({
    to: '+18445550001',
    from: '+18005550101',
    text: 'Hello from Telnyx!',
});

console.log(response.data);

Primary response fields:

  • response.data.id
  • response.data.to
  • response.data.from
  • response.data.text
  • response.data.sentAt
  • response.data.errors

Send an SMS with an alphanumeric sender ID

Common sender variant that requires different request shape.

client.messages.sendWithAlphanumericSender()POST /messages/alphanumeric_sender_id

ParameterTypeRequiredDescription
fromstring (E.164)YesA valid alphanumeric sender ID on the user's account.
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
textstringYesThe message body.
messagingProfileIdstring (UUID)YesThe messaging profile ID to use.
webhookUrlstring (URL)NoCallback URL for delivery status updates.
webhookFailoverUrlstring (URL)NoFailover callback URL for delivery status updates.
useProfileWebhooksbooleanNoIf true, use the messaging profile's webhook settings.
const response = await client.messages.sendWithAlphanumericSender({
  from: 'MyCompany',
  messaging_profile_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
  text: 'Hello from Telnyx!',
  to: '+13125550001',
});

console.log(response.data);

Primary response fields:

  • response.data.id
  • response.data.to
  • response.data.from
  • response.data.text
  • response.data.sentAt
  • response.data.errors

Webhook Verification

Telnyx signs webhooks with Ed25519. Each request includes telnyx-signature-ed25519 and telnyx-timestamp headers. Always verify signatures in production:

// In your webhook handler (e.g., Express — use raw body, not parsed JSON):
app.post('/webhooks', express.raw({ type: 'application/json' }), async (req, res) => {
  try {
    const event = await client.webhooks.unwrap(req.body.toString(), {
      headers: req.headers,
    });
    // Signature valid — event is the parsed webhook payload
    console.log('Received event:', event.data.event_type);
    res.status(200).send('OK');
  } catch (err) {
    console.error('Webhook verification failed:', err.message);
    res.status(400).send('Invalid signature');
  }
});

Webhooks

These webhook payload fields are inline because they are part of the primary integration path.

Delivery Update

FieldTypeDescription
data.event_typeenum: message.sent, message.finalizedThe type of event being delivered.
data.payload.iduuidIdentifies the type of resource.
data.payload.toarray[object]
data.payload.textstringMessage body (i.e., content) as a non-empty string.
data.payload.sent_atdate-timeISO 8601 formatted date indicating when the message was sent.
data.payload.completed_atdate-timeISO 8601 formatted date indicating when the message was finalized.
data.payload.costobject \null
data.payload.errorsarray[object]These errors may point at addressees when referring to unsuccessful/unconfirm...

Inbound Message

FieldTypeDescription
data.event_typeenum: message.receivedThe type of event being delivered.
data.payload.iduuidIdentifies the type of resource.
data.payload.directionenum: inboundThe direction of the message.
data.payload.toarray[object]
data.payload.textstringMessage body (i.e., content) as a non-empty string.
data.payload.typeenum: SMS, MMSThe type of message.
data.payload.mediaarray[object]
data.record_typeenum: eventIdentifies the type of the resource.

If you need webhook fields that are not listed inline here, read the webhook payload reference before writing the handler.


Important Supporting Operations

Use these when the core tasks above are close to your flow, but you need a common variation or follow-up step.

Send a group MMS message

Send one MMS payload to multiple recipients.

client.messages.sendGroupMms()POST /messages/group_mms

ParameterTypeRequiredDescription
fromstring (E.164)YesPhone number, in +E.164 format, used to send the message.
toarray[object]YesA list of destinations.
mediaUrlsarray[string]NoA list of media URLs.
webhookUrlstring (URL)NoThe URL where webhooks related to this message will be sent.
webhookFailoverUrlstring (URL)NoThe failover URL where webhooks related to this message will...
...+3 optional params in references/api-details.md
const response = await client.messages.sendGroupMms({
  from: '+13125551234',
  to: ['+18655551234', '+14155551234'],
    text: 'Hello from Telnyx!',
});

console.log(response.data);

Primary response fields:

  • response.data.id
  • response.data.to
  • response.data.from
  • response.data.type
  • response.data.direction
  • response.data.text

Send a long code message

Force a long-code sending path instead of the generic send endpoint.

client.messages.sendLongCode()POST /messages/long_code

ParameterTypeRequiredDescription
fromstring (E.164)YesPhone number, in +E.164 format, used to send the message.
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
mediaUrlsarray[string]NoA list of media URLs.
webhookUrlstring (URL)NoThe URL where webhooks related to this message will be sent.
webhookFailoverUrlstring (URL)NoThe failover URL where webhooks related to this message will...
...+6 optional params in references/api-details.md
const response = await client.messages.sendLongCode({
    from: '+18445550001', to: '+13125550002',
    text: 'Hello from Telnyx!',
});

console.log(response.data);

Primary response fields:

  • response.data.id
  • response.data.to
  • response.data.from
  • response.data.type
  • response.data.direction
  • response.data.text

Send a message using number pool

Let a messaging profile or number pool choose the sender for you.

client.messages.sendNumberPool()POST /messages/number_pool

ParameterTypeRequiredDescription
messagingProfileIdstring (UUID)YesUnique identifier for a messaging profile.
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
mediaUrlsarray[string]NoA list of media URLs.
webhookUrlstring (URL)NoThe URL where webhooks related to this message will be sent.
webhookFailoverUrlstring (URL)NoThe failover URL where webhooks related to this message will...
...+6 optional params in references/api-details.md
const response = await client.messages.sendNumberPool({
  messaging_profile_id: 'abc85f64-5717-4562-b3fc-2c9600000000',
  to: '+13125550002',
    text: 'Hello from Telnyx!',
});

console.log(response.data);

Primary response fields:

  • response.data.id
  • response.data.to
  • response.data.from
  • response.data.type
  • response.data.direction
  • response.data.text

Send a short code message

Force a short-code sending path when the sender must be a short code.

client.messages.sendShortCode()POST /messages/short_code

ParameterTypeRequiredDescription
fromstring (E.164)YesPhone number, in +E.164 format, used to send the message.
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
mediaUrlsarray[string]NoA list of media URLs.
webhookUrlstring (URL)NoThe URL where webhooks related to this message will be sent.
webhookFailoverUrlstring (URL)NoThe failover URL where webhooks related to this message will...
...+6 optional params in references/api-details.md
const response = await client.messages.sendShortCode({
    from: '+18445550001', to: '+18445550001',
    text: 'Hello from Telnyx!',
});

console.log(response.data);

Primary response fields:

  • response.data.id
  • response.data.to
  • response.data.from
  • response.data.type
  • response.data.direction
  • response.data.text

Schedule a message

Queue a message for future delivery instead of sending immediately.

client.messages.schedule()POST /messages/schedule

ParameterTypeRequiredDescription
tostring (E.164)YesReceiving address (+E.164 formatted phone number or short co...
messagingProfileIdstring (UUID)NoUnique identifier for a messaging profile.
mediaUrlsarray[string]NoA list of media URLs.
webhookUrlstring (URL)NoThe URL where webhooks related to this message will be sent.
...+8 optional params in references/api-details.md
const response = await client.messages.schedule({
    to: '+18445550001',
    from: '+18005550101',
    text: 'Appointment reminder',
    sendAt: '2025-07-01T15:00:00Z',
});

console.log(response.data);

Primary response fields:

  • response.data.id
  • response.data.to
  • response.data.from
  • response.data.type
  • response.data.direction
  • response.data.text

Send a WhatsApp message

Send WhatsApp traffic instead of SMS/MMS.

client.messages.sendWhatsapp()POST /messages/whatsapp

ParameterTypeRequiredDescription
fromstring (E.164)YesPhone number in +E.164 format associated with Whatsapp accou...
tostring (E.164)YesPhone number in +E.164 format
whatsappMessageobjectYes
typeenum (WHATSAPP)NoMessage type - must be set to "WHATSAPP"
webhookUrlstring (URL)NoThe URL where webhooks related to this message will be sent.
const response = await client.messages.sendWhatsapp({
  from: '+13125551234',
  to: '+13125551234',
  whatsapp_message: {},
});

console.log(response.data);

Primary response fields:

  • response.data.id
  • response.data.to
  • response.data.from
  • response.data.type
  • response.data.direction
  • response.data.body

Additional Operations

Use the core tasks above first. The operations below are indexed here with exact SDK methods and required params; use references/api-details.md for full optional params, response schemas, and lower-frequency webhook payloads. Before using any operation below, read the optional-parameters section and the response-schemas section so you do not guess missing fields.

OperationSDK methodEndpointUse whenRequired params
Retrieve a messageclient.messages.retrieve()GET /messages/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Cancel a scheduled messageclient.messages.cancelScheduled()DELETE /messages/{id}Remove, detach, or clean up an existing resource.id
List alphanumeric sender IDsclient.alphanumericSenderIDs.list()GET /alphanumeric_sender_idsInspect available resources or choose an existing resource before mutating it.None
Create an alphanumeric sender IDclient.alphanumericSenderIDs.create()POST /alphanumeric_sender_idsCreate or provision an additional resource when the core tasks do not cover this flow.alphanumericSenderId, messagingProfileId
Retrieve an alphanumeric sender IDclient.alphanumericSenderIDs.retrieve()GET /alphanumeric_sender_ids/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Delete an alphanumeric sender IDclient.alphanumericSenderIDs.delete()DELETE /alphanumeric_sender_ids/{id}Remove, detach, or clean up an existing resource.id
Retrieve group MMS messagesclient.messages.retrieveGroupMessages()GET /messages/group/{message_id}Fetch the current state before updating, deleting, or making control-flow decisions.messageId
List messaging hosted numbersclient.messagingHostedNumbers.list()GET /messaging_hosted_numbersInspect available resources or choose an existing resource before mutating it.None
Retrieve a messaging hosted numberclient.messagingHostedNumbers.retrieve()GET /messaging_hosted_numbers/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Update a messaging hosted numberclient.messagingHostedNumbers.update()PATCH /messaging_hosted_numbers/{id}Modify an existing resource without recreating it.id
List opt-outsclient.messagingOptouts.list()GET /messaging_optoutsInspect available resources or choose an existing resource before mutating it.None
List high-level messaging profile metricsclient.messagingProfileMetrics.list()GET /messaging_profile_metricsInspect available resources or choose an existing resource before mutating it.None
Regenerate messaging profile secretclient.messagingProfiles.actions.regenerateSecret()POST /messaging_profiles/{id}/actions/regenerate_secretTrigger a follow-up action in an existing workflow rather than creating a new top-level resource.id
List alphanumeric sender IDs for a messaging profileclient.messagingProfiles.listAlphanumericSenderIDs()GET /messaging_profiles/{id}/alphanumeric_sender_idsFetch the current state before updating, deleting, or making control-flow decisions.id
Get detailed messaging profile metricsclient.messagingProfiles.retrieveMetrics()GET /messaging_profiles/{id}/metricsFetch the current state before updating, deleting, or making control-flow decisions.id
List Auto-Response Settingsclient.messagingProfiles.autorespConfigs.list()GET /messaging_profiles/{profile_id}/autoresp_configsFetch the current state before updating, deleting, or making control-flow decisions.profileId
Create auto-response settingclient.messagingProfiles.autorespConfigs.create()POST /messaging_profiles/{profile_id}/autoresp_configsCreate or provision an additional resource when the core tasks do not cover this flow.op, keywords, countryCode, profileId
Get Auto-Response Settingclient.messagingProfiles.autorespConfigs.retrieve()GET /messaging_profiles/{profile_id}/autoresp_configs/{autoresp_cfg_id}Fetch the current state before updating, deleting, or making control-flow decisions.profileId, autorespCfgId
Update Auto-Response Settingclient.messagingProfiles.autorespConfigs.update()PUT /messaging_profiles/{profile_id}/autoresp_configs/{autoresp_cfg_id}Modify an existing resource without recreating it.op, keywords, countryCode, profileId, +1 more
Delete Auto-Response Settingclient.messagingProfiles.autorespConfigs.delete()DELETE /messaging_profiles/{profile_id}/autoresp_configs/{autoresp_cfg_id}Remove, detach, or clean up an existing resource.profileId, autorespCfgId

Other Webhook Events

Eventdata.event_typeDescription
replacedLinkClickmessage.link_clickReplaced Link Click

For exhaustive optional parameters, full response schemas, and complete webhook payloads, see references/api-details.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.47%
按下载量换算189

Claude

29.48%
按下载量换算152

Cursor

20.17%
按下载量换算104

Gemini CLI

8.41%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills