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.
git clone --depth 1 https://github.com/cmj-hub/claude-cold-emailWrote 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.
[](https://agentmods.dev/agents/cmj-hub/claude-cold-email/cold-email-deliverability-auditor)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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
- SPF: record exists, includes the inbox provider, lookup count ≤10
- DKIM: selector resolves, key length ≥1024 bits, body-signed
- DMARC: record exists, policy ≠
nonefor bulk senders, reporting URI configured - MX: TLS supported (STARTTLS), priority ordering sane
- Reverse DNS: PTR record matches forward DNS
- Blacklists: Spamhaus DBL, SURBL — flag any hits
- 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
~allor-all, NOT+allor 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=isquarantineorreject(NOTnonefor 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"
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.
- 12d ago First seen · 164 lines · 106 tokens per session scan A 3df4759b8fdf
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.
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…
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…
Demonstrate
Agent for demonstrating VS Code features.
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.
.NET-Notebook-Migration-Agent
Expert .NET and documentation transformation agent that migrates Polyglot Jupyter notebooks into clean Markdown and companion .NET sample code.
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.