Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

telnyx-numbers-pythontelnyx numbers Python 搜索

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

941

周安装

40

GitHub Stars

169

下载量

330
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/team-telnyx/skills --skill telnyx-numbers-python

简介

用于辅助 Python 项目开发、测试和依赖管理。

  • 适合阅读代码、定位测试问题或生成数据处理脚本。telnyx-numbers-python 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 使用时需确认虚拟环境和依赖版本,避免兼容性问题。
  • 安装方式:通过 GitHub 仓库安装,适用于主流 AI 工具。
  • 执行脚本或访问外部资源时应限定目录和操作范围。

SKILL.md

Telnyx Numbers - Python

Installation

pip install telnyx

Setup

import os
from telnyx import Telnyx

client = Telnyx(
    api_key=os.environ.get("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:

import telnyx

try:
    available_phone_numbers = client.available_phone_numbers.list()
except telnyx.APIConnectionError:
    print("Network error — check connectivity and retry")
except telnyx.RateLimitError:
    import time
    time.sleep(1)  # Check Retry-After header for actual delay
except telnyx.APIStatusError as e:
    print(f"API error {e.status_code}: {e.message}")
    if e.status_code == 422:
        print("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 item in page_result: to iterate through all pages automatically.

Reference Use Rules

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

Core Tasks

Search available phone numbers

Number search is the entrypoint for provisioning. Agents need the search method, key query filters, and the fields returned for candidate numbers.

client.available_phone_numbers.list()GET /available_phone_numbers

ParameterTypeRequiredDescription
filterobjectNoConsolidated filter parameter (deepObject style).
available_phone_numbers = client.available_phone_numbers.list()
print(available_phone_numbers.data)

Response wrapper:

  • items: available_phone_numbers.data
  • pagination: available_phone_numbers.meta

Primary item fields:

  • phone_number
  • record_type
  • quickship
  • reservable
  • best_effort
  • cost_information

Create a number order

Number ordering is the production provisioning step after number selection.

client.number_orders.create()POST /number_orders

ParameterTypeRequiredDescription
phone_numbersarray[object]Yes
connection_idstring (UUID)NoIdentifies the connection associated with this phone number.
messaging_profile_idstring (UUID)NoIdentifies the messaging profile associated with the phone n...
billing_group_idstring (UUID)NoIdentifies the billing group associated with the phone numbe...
...+1 optional params in references/api-details.md
number_order = client.number_orders.create(
    phone_numbers=[{"phone_number": "+18005550101"}],
)
print(number_order.data)

Primary response fields:

  • number_order.data.id
  • number_order.data.status
  • number_order.data.phone_numbers_count
  • number_order.data.requirements_met
  • number_order.data.messaging_profile_id
  • number_order.data.connection_id

Check number order status

Order status determines whether provisioning completed or additional requirements are still blocking fulfillment.

client.number_orders.retrieve()GET /number_orders/{number_order_id}

ParameterTypeRequiredDescription
number_order_idstring (UUID)YesThe number order ID.
number_order = client.number_orders.retrieve(
    "number_order_id",
)
print(number_order.data)

Primary response fields:

  • number_order.data.id
  • number_order.data.status
  • number_order.data.requirements_met
  • number_order.data.phone_numbers_count
  • number_order.data.phone_numbers
  • number_order.data.connection_id

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.

Create a number reservation

Create or provision an additional resource when the core tasks do not cover this flow.

client.number_reservations.create()POST /number_reservations

ParameterTypeRequiredDescription
phone_numbersarray[object]Yes
statusenum (pending, success, failure)NoThe status of the entire reservation.
idstring (UUID)No
record_typestringNo
...+3 optional params in references/api-details.md
number_reservation = client.number_reservations.create(
    phone_numbers=[{"phone_number": "+18005550101"}],
)
print(number_reservation.data)

Primary response fields:

  • number_reservation.data.id
  • number_reservation.data.status
  • number_reservation.data.created_at
  • number_reservation.data.updated_at
  • number_reservation.data.customer_reference
  • number_reservation.data.errors

Retrieve a number reservation

Fetch the current state before updating, deleting, or making control-flow decisions.

client.number_reservations.retrieve()GET /number_reservations/{number_reservation_id}

ParameterTypeRequiredDescription
number_reservation_idstring (UUID)YesThe number reservation ID.
number_reservation = client.number_reservations.retrieve(
    "number_reservation_id",
)
print(number_reservation.data)

Primary response fields:

  • number_reservation.data.id
  • number_reservation.data.status
  • number_reservation.data.created_at
  • number_reservation.data.updated_at
  • number_reservation.data.customer_reference
  • number_reservation.data.errors

List Advanced Orders

Inspect available resources or choose an existing resource before mutating it.

client.advanced_orders.list()GET /advanced_orders

advanced_orders = client.advanced_orders.list()
print(advanced_orders.data)

Response wrapper:

  • items: advanced_orders.data

Primary item fields:

  • id
  • status
  • area_code
  • comments
  • country_code
  • customer_reference

Create Advanced Order

Create or provision an additional resource when the core tasks do not cover this flow.

client.advanced_orders.create()POST /advanced_orders

ParameterTypeRequiredDescription
phone_number_typeenum (local, mobile, toll_free, shared_cost, national,...)No
requirement_group_idstring (UUID)NoThe ID of the requirement group to associate with this advan...
country_codestring (ISO 3166-1 alpha-2)No
...+5 optional params in references/api-details.md
advanced_order = client.advanced_orders.create()
print(advanced_order.id)

Primary response fields:

  • advanced_order.id
  • advanced_order.status
  • advanced_order.area_code
  • advanced_order.comments
  • advanced_order.country_code
  • advanced_order.customer_reference

Update Advanced Order

Modify an existing resource without recreating it.

client.advanced_orders.update_requirement_group()PATCH /advanced_orders/{advanced-order-id}/requirement_group

ParameterTypeRequiredDescription
advanced-order-idstring (UUID)Yes
phone_number_typeenum (local, mobile, toll_free, shared_cost, national,...)No
requirement_group_idstring (UUID)NoThe ID of the requirement group to associate with this advan...
country_codestring (ISO 3166-1 alpha-2)No
...+5 optional params in references/api-details.md
response = client.advanced_orders.update_requirement_group(
    advanced_order_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
print(response.id)

Primary response fields:

  • response.id
  • response.status
  • response.area_code
  • response.comments
  • response.country_code
  • response.customer_reference

Get Advanced Order

Fetch the current state before updating, deleting, or making control-flow decisions.

client.advanced_orders.retrieve()GET /advanced_orders/{order_id}

ParameterTypeRequiredDescription
order_idstring (UUID)Yes
advanced_order = client.advanced_orders.retrieve(
    "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
)
print(advanced_order.id)

Primary response fields:

  • advanced_order.id
  • advanced_order.status
  • advanced_order.area_code
  • advanced_order.comments
  • advanced_order.country_code
  • advanced_order.customer_reference

List available phone number blocks

Inspect available resources or choose an existing resource before mutating it.

client.available_phone_number_blocks.list()GET /available_phone_number_blocks

ParameterTypeRequiredDescription
filterobjectNoConsolidated filter parameter (deepObject style).
available_phone_number_blocks = client.available_phone_number_blocks.list()
print(available_phone_number_blocks.data)

Response wrapper:

  • items: available_phone_number_blocks.data
  • pagination: available_phone_number_blocks.meta

Primary item fields:

  • phone_number
  • cost_information
  • features
  • range
  • record_type
  • region_information

Retrieve all comments

Inspect available resources or choose an existing resource before mutating it.

client.comments.list()GET /comments

ParameterTypeRequiredDescription
filterobjectNoConsolidated filter parameter (deepObject style).
comments = client.comments.list()
print(comments.data)

Response wrapper:

  • items: comments.data
  • pagination: comments.meta

Primary item fields:

  • id
  • body
  • created_at
  • updated_at
  • comment_record_id
  • comment_record_type

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
Create a commentclient.comments.create()POST /commentsCreate or provision an additional resource when the core tasks do not cover this flow.None
Retrieve a commentclient.comments.retrieve()GET /comments/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Mark a comment as readclient.comments.mark_as_read()PATCH /comments/{id}/readModify an existing resource without recreating it.id
Get country coverageclient.country_coverage.retrieve()GET /country_coverageInspect available resources or choose an existing resource before mutating it.None
Get coverage for a specific countryclient.country_coverage.retrieve_country()GET /country_coverage/countries/{country_code}Fetch the current state before updating, deleting, or making control-flow decisions.country_code
List customer service recordsclient.customer_service_records.list()GET /customer_service_recordsInspect available resources or choose an existing resource before mutating it.None
Create a customer service recordclient.customer_service_records.create()POST /customer_service_recordsCreate or provision an additional resource when the core tasks do not cover this flow.None
Verify CSR phone number coverageclient.customer_service_records.verify_phone_number_coverage()POST /customer_service_records/phone_number_coveragesCreate or provision an additional resource when the core tasks do not cover this flow.None
Get a customer service recordclient.customer_service_records.retrieve()GET /customer_service_records/{customer_service_record_id}Fetch the current state before updating, deleting, or making control-flow decisions.customer_service_record_id
List inexplicit number ordersclient.inexplicit_number_orders.list()GET /inexplicit_number_ordersInspect available resources or choose an existing resource before mutating it.None
Create an inexplicit number orderclient.inexplicit_number_orders.create()POST /inexplicit_number_ordersCreate or provision an additional resource when the core tasks do not cover this flow.ordering_groups
Retrieve an inexplicit number orderclient.inexplicit_number_orders.retrieve()GET /inexplicit_number_orders/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
Create an inventory coverage requestclient.inventory_coverage.list()GET /inventory_coverageInspect available resources or choose an existing resource before mutating it.None
List mobile network operatorsclient.mobile_network_operators.list()GET /mobile_network_operatorsInspect available resources or choose an existing resource before mutating it.None
List network coverage locationsclient.network_coverage.list()GET /network_coverageInspect available resources or choose an existing resource before mutating it.None
List number block ordersclient.number_block_orders.list()GET /number_block_ordersInspect available resources or choose an existing resource before mutating it.None
Create a number block orderclient.number_block_orders.create()POST /number_block_ordersCreate or provision an additional resource when the core tasks do not cover this flow.starting_number, range
Retrieve a number block orderclient.number_block_orders.retrieve()GET /number_block_orders/{number_block_order_id}Fetch the current state before updating, deleting, or making control-flow decisions.number_block_order_id
Retrieve a list of phone numbers associated to ordersclient.number_order_phone_numbers.list()GET /number_order_phone_numbersInspect available resources or choose an existing resource before mutating it.None
Retrieve a single phone number within a number order.client.number_order_phone_numbers.retrieve()GET /number_order_phone_numbers/{number_order_phone_number_id}Fetch the current state before updating, deleting, or making control-flow decisions.number_order_phone_number_id
Update requirements for a single phone number within a number order.client.number_order_phone_numbers.update_requirements()PATCH /number_order_phone_numbers/{number_order_phone_number_id}Modify an existing resource without recreating it.number_order_phone_number_id
List number ordersclient.number_orders.list()GET /number_ordersCreate or inspect provisioning orders for number purchases.None
Update a number orderclient.number_orders.update()PATCH /number_orders/{number_order_id}Modify an existing resource without recreating it.number_order_id
List number reservationsclient.number_reservations.list()GET /number_reservationsInspect available resources or choose an existing resource before mutating it.None
Extend a number reservationclient.number_reservations.actions.extend()POST /number_reservations/{number_reservation_id}/actions/extendTrigger a follow-up action in an existing workflow rather than creating a new top-level resource.number_reservation_id
Retrieve the features for a list of numbersclient.numbers_features.create()POST /numbers_featuresCreate or provision an additional resource when the core tasks do not cover this flow.phone_numbers
Lists the phone number blocks jobsclient.phone_number_blocks.jobs.list()GET /phone_number_blocks/jobsInspect available resources or choose an existing resource before mutating it.None
Deletes all numbers associated with a phone number blockclient.phone_number_blocks.jobs.delete_phone_number_block()POST /phone_number_blocks/jobs/delete_phone_number_blockCreate or provision an additional resource when the core tasks do not cover this flow.phone_number_block_id
Retrieves a phone number blocks jobclient.phone_number_blocks.jobs.retrieve()GET /phone_number_blocks/jobs/{id}Fetch the current state before updating, deleting, or making control-flow decisions.id
List sub number ordersclient.sub_number_orders.list()GET /sub_number_ordersInspect available resources or choose an existing resource before mutating it.None
Retrieve a sub number orderclient.sub_number_orders.retrieve()GET /sub_number_orders/{sub_number_order_id}Fetch the current state before updating, deleting, or making control-flow decisions.sub_number_order_id
Update a sub number order's requirementsclient.sub_number_orders.update()PATCH /sub_number_orders/{sub_number_order_id}Modify an existing resource without recreating it.sub_number_order_id
Cancel a sub number orderclient.sub_number_orders.cancel()PATCH /sub_number_orders/{sub_number_order_id}/cancelModify an existing resource without recreating it.sub_number_order_id
Create a sub number orders reportclient.sub_number_orders_report.create()POST /sub_number_orders_reportCreate or provision an additional resource when the core tasks do not cover this flow.None
Retrieve a sub number orders reportclient.sub_number_orders_report.retrieve()GET /sub_number_orders_report/{report_id}Fetch the current state before updating, deleting, or making control-flow decisions.report_id
Download a sub number orders reportclient.sub_number_orders_report.download()GET /sub_number_orders_report/{report_id}/downloadFetch the current state before updating, deleting, or making control-flow decisions.report_id

Other Webhook Events

Eventdata.event_typeDescription
numberOrderStatusUpdatenumber.order.status.updateNumber Order Status Update

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

34.63%
按下载量换算114

Claude

28.94%
按下载量换算96

Cursor

18.15%
按下载量换算60

Gemini CLI

10.03%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills