DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Email Deliverability Audit — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
E

email-deliverability-audit

Email Deliverability Audit

Four sequential DNS gates (format, dead domain, MX, role/placeholder) classify email addresses as sendable, risky, or dead — with a hard integrity rule: every verdict traces to a query run in that session.

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:ChenneyZhuang/email-deliverability-audit#75c54fa214a9fcb0e4a74a93d0c94777eb5871eb
READMECompatibilityVersions

Compatibility and provenance

Email Deliverability Audit is published as email-deliverability-audit and currently resolves to version 0.2.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/14/2026

Versions

0.2.0stable
9/14/2026

Related plugins

Loading related plugins…

Latest
0.2.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
9/14/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in developer-tools.

DSCODE@toddzheng024/dscode-bundleA complete DeepSeek coding agent with persistent shell, Ultra collaboration and automatic permission review.Plugindsh-pluginA community plugin marketplace for DeepSeek Harness, built to the official plugin spec — browse, search and install 9000+ human-curated community plugins without leaving the app. · DeepSeek Harness 社区插件市场(遵循官方开发规范):9000+ 人工精选社区插件,每日更新。Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Sdk Minimal@deepseek-ai/dsh-sdk-minimalThe standalone minimal SDK profile bundle: JSON-RPC, one DeepSeek adapter, persistent shell, and JSONL sessions

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 实测通过。