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

sinch-10dlc新奇 10dlc

Agent Skill

sinch-10dlc 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,482

周安装

63

GitHub Stars

7

下载量

519
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sinch/skills --skill sinch-10dlc

简介

sinch-10dlc 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 当前无原始 SKILL.md 内容可参考,实际功能以来源仓库为准。

SKILL.md

Sinch 10DLC Registration

Overview

10DLC (10-Digit Long Code) is the required US registration system for Application-to-Person (A2P) SMS on standard 10-digit phone numbers. You must register a brand (the sending company) and a campaign (the messaging use case) with The Campaign Registry (TCR) via Sinch before sending any US A2P SMS.

Agent Instructions

Before writing code, determine the user's goal:

  1. What do you need? Register a brand, register a campaign, check status, or troubleshoot a rejection?
  2. Do you already have a brand ID? If yes, skip to Step 3 (qualify) or Step 4 (campaign).
  3. Registration type? SIMPLIFIED (faster, lower throughput, $10) or FULL (recommended for production, $50)?

This skill covers 10DLC only. The same Registration API also includes TFN (Toll-Free Number) verification endpoints — for toll-free registration, see the API spec directly.

This API is REST-only — there is no SDK wrapper. Use curl, fetch, axios, requests, or equivalent HTTP clients.

Getting Started

Auth: See sinch-authentication for setup.

Base URL

https://us10dlc.numbers.api.sinch.com

US-only — there are no regional variants for 10DLC.

Store credentials in environment variables — never hardcode tokens or keys in commands or source code:

export SINCH_PROJECT_ID="your-project-id"
export SINCH_ACCESS_TOKEN="your-oauth-token"

First API Call

Register a brand:

curl -X POST \
  "https://us10dlc.numbers.api.sinch.com/v1/projects/$SINCH_PROJECT_ID/brandRegistrations:submit" \
  -H "Authorization: Bearer $SINCH_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "brandRegistrationType": "FULL",
  "displayName": "Sinch Mock",
  "companyDetails": {
    "companyName": "Sinch",
    "brandName": "Sinch Mock x",
    "companyEmail": "support@sinch.com",
    "country": "US",
    "state": "GA",
    "city": "Atlanta",
    "streetAddress": " 3500 Lenox Rd NE, Ste. 1875",
    "postalCode": "94105",
    "webAddress": "https://sinch.com"
  },
  "financialDetails": {
    "brandEntityType": "PRIVATE",
    "brandVerticalType": "TECHNOLOGY",
    "taxIdCountry": "US",
    "taxIdCorporate": "770505044",
    "stockSymbol": "SINCH",
    "exchange": "STO"
  },
  "contactDetails": {
    "firstName": "Jane",
    "lastName": "Doe",
    "phoneNumber": "+14155550100",
    "email": "admin@sinch.com"
  },
  "mock": true
}'

Key Concepts

  • Brand — The company sending messages. Must be registered first. ID starts with B (e.g., BESINCH).
  • Campaign — A messaging use case tied to a brand. Defines what, to whom, and why.
  • TCR — The Campaign Registry. Sinch submits to TCR on your behalf as your CSP.
  • Registration type (brandRegistrationType) — SIMPLIFIED (basic, lower throughput, $10) or FULL (complete vetting, higher throughput, $50). Default is SIMPLIFIED. Prefer FULL for production.
  • Trust score — Assigned by TCR after vetting. Higher score = more messages per second. This is a TCR concept; the Sinch API does not return it in the brand response.
  • Use case — The campaign's messaging purpose. Use cases are categorized as Standard or Special, with different vetting requirements and fees.

- Standard Use Cases: 2FA, ACCOUNT_NOTIFICATION, CUSTOMER_CARE, DELIVERY_NOTIFICATION, FRAUD_ALERT, HIGHER_EDUCATION, MARKETING, POLLING_VOTING, PUBLIC_SERVICE_ANNOUNCEMENT, SECURITY_ALERT. - Special Use Cases: AGENTS_FRANCHISES, CARRIER_EXEMPT, CHARITY, EMERGENCY, K12_EDUCATION, POLITICAL, PROXY, SOCIAL, SWEEPSTAKE. - Mixed/Low Volume: LOW_VOLUME or MIXED can be used for campaigns that combine multiple standard use cases but have low traffic requirements.

  • CSP — Campaign Service Provider. Sinch typically acts as your CSP, managing the registration process. It's also possible for you to register as your own CSP directly with TCR and use Sinch for number provisioning and connectivity, though this is a more advanced setup.

Workflow: Complete 10DLC Setup

Follow these steps in order. Each step depends on the previous one succeeding. For detailed curl examples, response schemas, enum values, and polling strategies, see references/workflow.md.

Once approved, you can send A2P SMS on US 10-digit long codes through Sinch. To send messages, see the sinch-conversation-api skill.

Common Patterns

Gotchas and Best Practices

Brand rejected

  1. Fetch brand feedback (see Step 2 above)
  2. Common fixes: correct EIN format (XX-XXXXXXX), match company name to IRS records exactly, fix stock symbol if public
  3. Re-register with corrected data

Campaign rejected

  1. Fetch campaign feedback via Campaign Registration Feedback — includes TCR errors and internal errors
  2. Fix the issue — the most common causes and their fixes are described in Step 4's CRITICAL block
  3. Create a new campaign with corrected data (campaigns cannot be edited after submission)

Messages blocked after registration

  • Verify campaign status is APPROVED (not just brand)
  • Check throughput limits — brand trust score (assigned by TCR, not returned by Sinch API) affects messages per second
  • Ensure the sending number is associated with the approved campaign

General

  • Always use FULL registration type for production — it yields higher trust scores and throughput than SIMPLIFIED.
  • Use campaignRegistrations:qualify before submitting a campaign to check requirements and fees upfront.
  • Poll registration status hourly — there are no webhooks for state transitions.
  • Match company name and taxIdCorporate (EIN) to IRS records exactly to avoid brand rejection.
  • If a campaign is rejected, the safest and most common approach is to create a new one with corrected data.
  • Brands and campaigns can also be registered via the Sinch Build Dashboard UI.
  • This API is REST-only (no SDK). Use direct HTTP calls.

Links

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.85%
按下载量换算186

Claude

31.35%
按下载量换算163

Cursor

20.42%
按下载量换算106

Gemini CLI

9.86%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills