cold-email-deliverability-auditor

cold-email-deliverability-auditor is an agent for Claude Code from cmj-hub/claude-cold-email. It costs 106 tokens per session (1,315 once invoked), scanned A, original, MIT.

An email-sending check that tests domain records, mail-server settings, blacklist status, and bulk-sender rules. SPF, DKIM, and DMARC are DNS records that help receiving mail systems verify senders.

In plain words
What is it for?
Use it to audit a sending domain and IP, check mail authentication and reverse DNS, test encrypted mail connections, and review Google, Yahoo, and Microsoft requirements.
Why use it?
It finds configuration and reputation problems that can send cold emails to spam or prevent delivery.

Agent for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the cold-email plugin — 12 skills, 2 agents shipped together

Good fit Use it to audit a sending domain and IP, check mail authentication and reverse DNS, test encrypted mail connections, and review Google, Yahoo, and Microsoft requirements.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/cmj-hub/claude-cold-email/cold-email-deliverability-auditor
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/cmj-hub/claude-cold-email

Made for: Claude Code.

Or install cold-email, the plugin that ships this one along with the rest of its 12 skills, 2 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cold-email-deliverability-auditor

README.md
[![agentmods](https://agentmods.dev/badge/agents/cmj-hub/claude-cold-email/cold-email-deliverability-auditor/github.svg)](https://agentmods.dev/agents/cmj-hub/claude-cold-email/cold-email-deliverability-auditor)
Your own site
<a href="https://agentmods.dev/agents/cmj-hub/claude-cold-email/cold-email-deliverability-auditor"><img src="https://agentmods.dev/badge/agents/cmj-hub/claude-cold-email/cold-email-deliverability-auditor/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cold-email-deliverability-auditor

Your own site · 80×15
<a href="https://agentmods.dev/agents/cmj-hub/claude-cold-email/cold-email-deliverability-auditor"><img src="https://agentmods.dev/badge/agents/cmj-hub/claude-cold-email/cold-email-deliverability-auditor.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,315 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00106 $0.01315
Opus 5 $0.00053 $0.00658
Sonnet 5 $0.00021 $0.00263
Haiku 4.5 $0.00011 $0.00131

Measured 12d ago against content hash 3df4759b8fdf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

cold-email-deliverability-auditor scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/cold-email-deliverability-auditor.md · 164 lines

How it starts

The opening of the file, as written. The whole thing — 164 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Cold Email Deliverability Auditor Agent

You are a deliverability specialist. You evaluate sending-domain readiness across DNS, reputation, and bulk-sender compliance using only native tools and public APIs — no paid services.

Core responsibilities

  1. SPF: record exists, includes the inbox provider, lookup count ≤10
  2. DKIM: selector resolves, key length ≥1024 bits, body-signed
  3. DMARC: record exists, policy ≠ none for bulk senders, reporting URI configured
  4. MX: TLS supported (STARTTLS), priority ordering sane
  5. Reverse DNS: PTR record matches forward DNS
  6. Blacklists: Spamhaus DBL, SURBL — flag any hits
  7. Bulk-sender compliance: Google / Yahoo / Microsoft 2024 rules

Execution workflow

1. Take the domain + sending IP

User provides:

  • sending_domain (e.g. outreach.example.com)
  • sending_ip (optional — derive from MX if not provided)
  • dkim_selector (optional — default to common selectors: default, google, selector1, s1024)
  • inbox_provider (GSuite / O365 / Smartlead / Instantly / custom)

2. SPF check

dig +short TXT <sending_domain> | grep "v=spf1"

Validate:

  • Record exists
  • Includes _spf.google.com (GSuite), spf.protection.outlook.com (O365), or the provider's published include
  • Lookup count ≤10 (DNS resolution recursion limit)
  • Final mechanism is ~all or -all, NOT +all or no qualifier

3. DKIM check

Try common selectors:

for sel in default google selector1 s1024 dkim mandrill; do
  dig +short TXT "${sel}._domainkey.<sending_domain>"
done

Decode the p= value to verify key length ≥1024 bits.

4. DMARC check

dig +short TXT _dmarc.<sending_domain>

Validate:

  • Record exists
  • p= is quarantine or reject (NOT none for bulk senders)
  • rua=mailto: reporting URI present
  • Optional: sp=, pct=, adkim=, aspf= configured per use case

5. MX + TLS check

dig +short MX <sending_domain>
# Then for each MX, probe TLS:
echo | openssl s_client -starttls smtp -connect <mx>:25 -showcerts 2>&1 | grep "Verify return"

Read the full file on GitHub · 164 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 164 lines · 106 tokens per session scan A 3df4759b8fdf

Subscribe to this mod's changes

cold-email-deliverability-auditor is an agent published in the GitHub repository cmj-hub/claude-cold-email (2 stars, last pushed 3d ago), licensed MIT. It adds 106 tokens to every session and 1,315 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

tracking-watchdog

Proactive tracking coverage monitor. Use automatically after code changes that add new features, modify existing functionality, or change user-facing behavior. Checks whether the tracking plan covers the changes and suggests new events, properties, or tracking updates when gaps are found. Runs in the background and…

Accoil/product-tracking-skills · 81 tokens

outreach-drafter

Intent Outreach Phase-3 worker. Scores one lead's fit against the ICP and drafts grounded outreach (email or LinkedIn) for its target contacts, using ONLY the research + enrichment data it is handed. Returns a fit score, angles, and draft messages — it does not call connectors and does not save. Dispatched by the…

jeremylongshore/intent-outreach · 90 tokens

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens

playwright-test-generator

Use this agent when you need to create automated browser tests using Playwright Examples: Context: User wants to generate a test for the test plan item.

microsoft/playwright · 151 tokens

.NET-Notebook-Migration-Agent

Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.

microsoft/ai-agents-for-beginners · 33 tokens

AVM Owner Triage

Triage open GitHub issues across the Azure Verified Modules (AVM) repos an owner maintains. Splits the backlog into a Copilot-delegatable pile and a human pile, produces a report with a delegation ratio, and never comments or assigns without explicit user approval.

github/awesome-copilot · 61 tokens