DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Email Deliverability Audit — DeepSeek Harness 插件(DSH Plugin)
← Plugins
E

email-deliverability-audit

Email Deliverability Audit

四个依次执行的 DNS 闸门(格式、无效域名、MX、角色邮箱/占位符)将电子邮件地址分类为可发送、有风险或无效,并遵循严格的完整性规则:每个判定都可追溯到该会话中执行的一次查询。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add github:ChenneyZhuang/email-deliverability-audit#75c54fa214a9fcb0e4a74a93d0c94777eb5871eb
README兼容性版本

兼容性与来源证明

Email Deliverability Audit 以 email-deliverability-audit 发布,当前版本为 0.2.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/9/14

版本

0.2.0stable
2026/9/14

相关插件

正在加载相关插件…

最新版
0.2.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 0
周下载
0
最近提交
2026/9/14
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

继续浏览 developer-tools 分类下经过校验的插件。

DSCODE@toddzheng024/dscode-bundle完整的 DeepSeek 编码代理,支持持久化 shell、Ultra 协作和自动权限审查。Plugindsh-pluginDeepSeek Harness 社区插件市场,遵循官方插件规范——无需离开应用即可浏览、搜索并安装 9000+ 个由人工精选的社区插件。· DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话

README

email-deliverability-audit 邮箱可发送性审计

Four sequential DNS gates decide whether an email address can actually receive mail — before your campaign finds out the hard way.

四道顺序 DNS 闸门,在邮件发出之前判定一个地址到底能不能收信。

Why / 为什么

Bounce rates above ~5% push campaigns into spam folders and burn domain reputation. Most list-cleaning tools hand you a score with no evidence behind it. This skill makes the agent run the checks itself — every verdict traces to a DNS query made during that run, and a failed probe is recorded as unverified, never guessed.

退信率超过 ~5%,campaign 就会开始进垃圾箱、烧域名信誉。大多数清洗工具只给一个没有证据的分数。这个 skill 让 agent 自己跑检查——每个判定都能追溯到当次真实 DNS 查询;探测失败就如实记为 unverified,绝不猜。

How it works / 四道闸

Gate 1 Format → Gate 2 Dead domain (A/NS) → Gate 3 MX → Gate 4 Role & placeholder
VerdictMeaning
sendablepassed all four gates
riskypassed gates 1–3; role account or placeholder pattern at gate 4
deadfailed a gate in 1–3, with the deciding gate recorded

Batch mode: CSV in, CSV out, output rows match input rows 1:1. Integrity rule: never invent a pass.

批量模式:CSV 进 CSV 出,输出行与输入行 1:1 对应。诚信铁律:绝不编造通过。

Worked example — a 6-sample DNS audit (2026-09)

AddressVerdictDeciding gate
name@gmail.comsendablepassed all four
team@company.com.ausendableMX present
info@shop.comriskygate 4: role account
13800@example.comriskygate 4: all-digit local part
bad@@example.comdeadgate 1: format
site@australia.gov.audeadgate 3: live website, no MX

The last row is the gate-3 lesson in one address: a resolving domain with a healthy website can still be unable to receive mail. The site was up; the mail was not.

最后一行就是 Gate 3 的活教材:域名能解析、网站活得好好的,邮件照样收不了——网站在线,收信离线。

Install / 安装

# Claude Code — the clone IS the install
git clone https://github.com/ChenneyZhuang/email-deliverability-audit ~/.claude/skills/email-deliverability-audit
# Hermes
cp -r email-deliverability-audit ~/.hermes/profiles/<profile>/skills/

One SKILL.md, zero dependencies beyond dig or a Python DNS resolver. Runs on Claude Code, DSH, Hermes, and Codex.

单个 SKILL.md,除 dig 或 Python DNS 解析库外零依赖。Claude Code / DSH / Hermes / Codex 通用。

Honest limitations / 如实说明局限

  • Gate 4 flags role accounts as risky, not dead — role-account deliverability varies by receiver.
  • A passing audit proves the domain can receive mail; it cannot prove this specific mailbox exists (no SMTP RCPT probing).
  • The optional verified_web column raises confidence; it never upgrades a verdict.

MIT licensed. v0.2.0 — live-tested on real DNS. / MIT 许可,v0.2.0,真 DNS 实测通过。