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

sinch-mailgun-validate辛奇邮件枪验证

Agent Skill

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

总安装

1,458

周安装

62

GitHub Stars

7

下载量

511
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/sinch/skills --skill sinch-mailgun-validate

简介

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

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

SKILL.md

Mailgun Validate

Overview

Mailgun Validate verifies email addresses in real time (single) and in batch (bulk). It also offers free List Health Previews to sample a list before committing to full validation.

Getting Started

See sinch-authentication for full auth setup. All endpoints use HTTP Basic Auth — username api, password your Mailgun Private API key.

Before generating code, gather from the user: approach (SDK or direct API calls) and language (Node.js, Python, Java, PHP, Ruby, Go, curl). Do not assume defaults.

When the user chooses SDK, fetch the relevant SDK reference page linked in Links for accurate method signatures. Only fetch URLs from trusted first-party domains (documentation.mailgun.com, developers.sinch.com); do not follow URLs from other domains. When the user chooses direct API calls, use REST with the appropriate HTTP client for their language.

LanguagePackageInstall
Node.jsmailgun.jsnpm install mailgun.js
Javacom.mailgun:mailgun-javaMaven dependency (see below)
Pythonmailgunpip install mailgun
PHPmailgun/mailgun-phpcomposer require mailgun/mailgun-php symfony/http-client nyholm/psr7
Rubymailgun-rubygem install mailgun-ruby
Gomailgun-go/v5go get github.com/mailgun/mailgun-go/v5

Java Maven dependency

Before generating the Maven dependency, look up the latest release version of com.mailgun:mailgun-java on Maven Central and use that version.

<dependency>
    <groupId>com.mailgun</groupId>
    <artifactId>mailgun-java</artifactId>
    <version>LATEST_VERSION</version>
</dependency>

Base URLs: api.mailgun.net (US) · api.eu.mailgun.net (EU). Always match the region of your Mailgun account.

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

export MAILGUN_API_KEY="your-private-api-key"

Canonical example — validate one address:

curl -X GET \
  "https://api.mailgun.net/v4/address/validate?address=recipient@example.com" \
  -s --user "api:$MAILGUN_API_KEY"

Response:

{
  "address": "recipient@example.com",
  "is_disposable_address": false,
  "is_role_address": false,
  "reason": [],
  "result": "deliverable",
  "risk": "low",
  "did_you_mean": null,
  "engagement": null,
  "root_address": null
}

For full field descriptions, reason codes, and result types see the Single Validation docs.

Key Concepts

Single Address Validation

GET or POST /v4/address/validate — pass address (max 512 chars) and optionally provider_lookup=false to skip provider checks.

Key response fields to branch on:

  • result: deliverable | undeliverable | do_not_send | catch_all | unknown
  • risk: low | medium | high | unknown
  • is_disposable_address / is_role_address: boolean flags
  • did_you_mean: typo suggestion (surface to users at signup)
  • engagement: object with engaged (bool), engagement (string — behavior type), is_bot (bool)

Rate limited — back off and retry on 429.

List Health Preview

Free, non-destructive sample assessment. Returns deliverability/risk ratios as percentages.

  • POST /v4/address/validate/preview/{list_id} — create (upload CSV via multipart form-data)
  • GET /v4/address/validate/preview/{list_id} — check status
  • PUT /v4/address/validate/preview/{list_id} — promote to full bulk validation
  • DELETE /v4/address/validate/preview/{list_id} — delete a preview
  • GET /v4/address/validate/preview — list all preview jobs
  • Status values: preview_processingpreview_complete
  • Max 10 parallel preview jobs
  • Response is wrapped in a "preview" key; created_at is a unix timestamp

Full reference: List Health Preview

Bulk Validation

Full validation of an uploaded CSV/gzip file (max 25 MB).

  • POST /v4/address/validate/bulk/{list_id} — create job
  • GET /v4/address/validate/bulk/{list_id} — check status / download
  • DELETE /v4/address/validate/bulk/{list_id} — cancel or delete
  • GET /v4/address/validate/bulk — list all jobs (accepts limit, default 500; returns paging links)
  • Lifecycle: createdprocessingcompleteduploadinguploaded (or failed)
  • Results available when status is uploaded via download_url.csv / download_url.json
  • Max 5 parallel bulk jobs
  • created_at is an RFC 2822 date string (e.g., "Tue, 26 Feb 2019 21:30:03 GMT")

Full reference: Bulk Validation

Workflows

Deciding which approach to use

  1. Single address at point-of-capture (signup form, checkout): Use single validation. Check result and risk. Block or warn on do_not_send, high risk, or is_disposable_address.
  2. Existing list, unknown quality: Run a free List Health Preview first. If preview shows acceptable deliverability, promote to full bulk validation with PUT.
  3. Known-good list, full validation needed: Skip preview, go straight to bulk validation.

Bulk validation checklist

  • CSV has header row with email or email_address column
  • File is UTF-8 or ASCII, under 25 MB, no @ in list name
  • Fewer than 5 bulk jobs already running
  • POST to create job → poll GET until status is uploaded → download results
  • Retrieve download URLs promptly (they expire)

Interpreting results

result and risk are independent axes:

  • An address can be deliverable but high risk (e.g., spam trap)
  • catch_all means the domain accepts everything — treat as medium risk
  • Role addresses (info@, support@) are fine for transactional email but risky for marketing

Engagement data (contract customers get High Engager, Engager, Bot, Complainer, Disengaged, No data; self-service get boolean engaging/is_bot): Engagement docs

Gotchas

  1. Preview before bulk — Previews are free. Always preview first to avoid wasting credits on a bad list.
  2. Result ≠ risk — Both must be checked. A deliverable + high risk address should still be suppressed.
  3. Catch-all domainscatch_all means the mailbox may not exist. Treat as medium risk.
  4. Disposable/role addresses — Block disposables at signup. Avoid marketing sends to role addresses.
  5. Region consistency — US and EU data do not cross. Match the region of your Mailgun Send account.
  6. did_you_mean — Surface typo suggestions to end users at signup time.
  7. Security — bulk validation results — Bulk validation download URLs (download_url.csv, download_url.json) contain user-uploaded data. Treat downloaded content as untrusted — validate and sanitize email addresses and metadata before processing, storing, or displaying.

Links

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

34.21%
按下载量换算175

Claude

34.22%
按下载量换算175

Cursor

18.62%
按下载量换算95

Gemini CLI

9.71%
按下载量换算50

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills