pre-send-qa — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited pre-send-qa (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Catch the embarrassing stuff before it ships to your list. Runs a full pre-flight check on an email: merge tag fallbacks, broken links, spam triggers, CAN-SPAM / GDPR footers, mobile rendering, size limits, accessibility.
Requires: Cogny MCP for campaign-ID mode. Paste-HTML mode works without MCP (but without send-context checks).
/pre-send-qa <campaign-or-draft-id> — QA a specific campaign (or draft, for Get a Newsletter) in your ESP /pre-send-qa — then paste the email HTML/MJML/text when prompted
Mode A — Campaign ID (MCP). Detect which ESP is connected (check both namespaces: mcp__cogny__<svc>__* and mcp__<svc>__*) and use the right tool:
| ESP | Fetch tool | What the ID refers to |
|---|---|---|
| Klaviyo | get_campaign | Campaign object |
| Mailchimp | tool_get_campaign | Campaign object |
| Rule | tool_get_campaign | Campaign object |
| Get a Newsletter — pre-send | tool_get_draft | A draft that hasn't been sent yet |
| Get a Newsletter — post-send forensics | tool_get_sent + tool_get_report | A sent item |
For every ESP extract: subject, preheader, from name, from email, reply-to, HTML body, text body, target segment/list, scheduled send time. Also fetch the associated list/audience size so Section 2.8 has recipient count.
Get a Newsletter has no single "campaign" object. If the user passes an ID, try tool_get_draft first (pre-send QA is the common use), fall back to tool_get_sent if that 404s. If they want to QA a scheduled send, use tool_list_scheduled to find it.
Mode B — Paste:
Walk through every category. For each item, mark [PASS], [WARN], or [FAIL] and include the specific offending content.
#### 2.1 Headers & routing
@gmail.com/@outlook.com from addresses (deliverability killer for bulk)#### 2.2 Merge tags / personalization Scan body + subject + preheader for:
{{ ... }}, {% ... %}, *|...|*, [[...]], %%...%%, {...} — depending on ESP syntax{{ first_name|default:"there" }} (Klaviyo), *|IFNOT:FNAME|*there*|ELSE:*|FNAME|**|END:IF|* (Mailchimp). Flag any token without a fallback as FAIL.{% if %} must have {% endif %}; same for loops#### 2.3 Links Extract all <a href="..."> from the HTML. For each:
href="/path" without domain; no href="#" unless intentional anchor*.staging.*, *.dev.*, stage., preprod.utm_source/utm_medium/utm_campaignutm_campaign; flag divergence#### 2.4 Images
imgur, cloudinary demo, etc. instead of a brand CDN#### 2.5 Compliance
unsubscribe, preferences, opt outdisplay:none or font-size:1px#### 2.6 Spam triggers Scan subject + preheader + body for classic triggers and report offenders:
! in subject, !!!, ???$$$, ★, excessive emoji (>3)<body>Output each offender with context:
🔴 Subject contains "!!!"
🟡 Body has 4 instances of ALL CAPS words: "LIMITED", "TODAY", "ACT NOW", "DON'T"#### 2.7 Rendering & size
<style> blocks. Many clients strip <head> styles.<meta name="viewport" content="width=device-width">font-family: "Custom Font"; without a web-safe fallback#### 2.8 Send context (MCP mode only)
Pre-send QA: <campaign name | "pasted email">
Recipient count: <N> Send ETA: <time or "not scheduled">
Overall: <READY TO SEND | FIX BEFORE SEND | CRITICAL ISSUES>
🔴 Critical (will break or embarrass)
— <specific issue with offending text / URL / line>
— ...
🟡 Warnings (fix if you have time)
— ...
🟢 Passed
— <count> checks passed
──
Recommended fix order:
1. ...
2. ...
Merge-tag fallback cheatsheet for <ESP>:
[ESP-specific syntax examples]If critical issues are found and the campaign is scheduled to send soon, create a finding:
{
"title": "Campaign '<name>' has critical QA issues — blocked send",
"body": "<enumerated issues>",
"action_type": "pre_send_fix",
"priority": "high"
}Never modify the campaign automatically. Always present the diff and let the user approve each fix.
{{ first_name|default:"there" }}*|FNAME|* with *|IFNOT:FNAME|*there*|ELSE:*|FNAME|**|END:IF|*[Firstname] with platform-specific fallback syntax~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.