ACA email deliverability audit
Review whether ACA email outreach is ready to send without unnecessary risk.
Rules
- Read-only unless the user explicitly approves changes.
- Do not promise inbox placement. Report risk levels and concrete blockers.
- Treat disconnected mailboxes, high bounce risk lists, aggressive volume, and spammy copy as blockers.
Workflow
- Inspect
list_email_mailboxes, list_sender_accounts with channel: "email", list_email_sequences, and active email campaigns from list_campaigns.
- For relevant sequences, call
get_email_sequence.
- Review:
- Connected mailbox count
- Warmup and reputation fields if returned
- Daily limits and send windows
- Step count and spacing
- Tracking settings
- Lead list quality and email status
- Copy risk using
aca-copy-spam-checker
- Report blockers, warnings, and launch-safe defaults.
Output format
Deliverability audit: {pass / caution / blocked}
Blockers:
- {blocker}
Warnings:
- {warning}
Recommended limits:
- Daily new leads: {n}
- Gap: {minutes}
- Tracking: {recommendation}
Skill chaining
This skill participates in the ACA chain. Preserve the selected ACA org, relevant IDs, user brief, approval state, and any generated artifacts when continuing into another ACA skill. If the user asked for execution and a downstream condition is met, continue into the next skill automatically; otherwise end with the handoff block.
Upstream
- Called by
aca-launch-outreach, aca-sender-health, aca-email-sequence-manager, or incident workflows.
Auto-continue conditions
- Infrastructure is not ready -> continue to
aca-email-infra-readiness.
- Copy risk exists -> continue to
aca-copy-spam-checker.
- A controlled test is needed -> continue to
aca-deliverability-test.
- Audit passes and campaign is queued -> continue to
aca-launch-outreach.
Stop before chaining when
- Ask before sequence/campaign changes.
Downstream skills
aca-email-infra-readiness - fix readiness gaps.
aca-copy-spam-checker - reduce copy risk.
aca-deliverability-test - run small preflight.
aca-launch-outreach - launch after passing.
Handoff block
Chain state: {continue|needs_approval|blocked|complete}
Next skill: {aca-skill-name|none}
Reason: {why this handoff is or is not needed}
Carry forward: {org_id/name, product_id, icp_id, lead_list_id, campaign_id, sequence_id, job_id, approvals, constraints}
ACA tools used
list_email_mailboxes
list_sender_accounts
list_email_sequences, get_email_sequence
list_campaigns, get_campaign
get_lead_list
1---2name: aca-email-deliverability-audit3description: Audit ACA cold email readiness before launch. Use when the user asks about deliverability, inbox placement, warmup, mailbox health, sending limits, bounce risk, or whether a sequence is safe to start.4license: MIT5---67# ACA email deliverability audit89Review whether ACA email outreach is ready to send without unnecessary risk.1011## Rules1213- Read-only unless the user explicitly approves changes.14- Do not promise inbox placement. Report risk levels and concrete blockers.15- Treat disconnected mailboxes, high bounce risk lists, aggressive volume, and spammy copy as blockers.1617## Workflow18191. Inspect `list_email_mailboxes`, `list_sender_accounts` with `channel: "email"`, `list_email_sequences`, and active email campaigns from `list_campaigns`.202. For relevant sequences, call `get_email_sequence`.213. Review:22 - Connected mailbox count23 - Warmup and reputation fields if returned24 - Daily limits and send windows25 - Step count and spacing26 - Tracking settings27 - Lead list quality and email status28 - Copy risk using `aca-copy-spam-checker`294. Report blockers, warnings, and launch-safe defaults.3031## Output format3233```text34Deliverability audit: {pass / caution / blocked}3536Blockers:37- {blocker}3839Warnings:40- {warning}4142Recommended limits:43- Daily new leads: {n}44- Gap: {minutes}45- Tracking: {recommendation}46```4748## Skill chaining4950This skill participates in the ACA chain. Preserve the selected ACA org, relevant IDs, user brief, approval state, and any generated artifacts when continuing into another ACA skill. If the user asked for execution and a downstream condition is met, continue into the next skill automatically; otherwise end with the handoff block.5152**Upstream**53- Called by `aca-launch-outreach`, `aca-sender-health`, `aca-email-sequence-manager`, or incident workflows.5455**Auto-continue conditions**56- Infrastructure is not ready -> continue to `aca-email-infra-readiness`.57- Copy risk exists -> continue to `aca-copy-spam-checker`.58- A controlled test is needed -> continue to `aca-deliverability-test`.59- Audit passes and campaign is queued -> continue to `aca-launch-outreach`.6061**Stop before chaining when**62- Ask before sequence/campaign changes.6364**Downstream skills**65- `aca-email-infra-readiness` - fix readiness gaps.66- `aca-copy-spam-checker` - reduce copy risk.67- `aca-deliverability-test` - run small preflight.68- `aca-launch-outreach` - launch after passing.6970**Handoff block**7172```text73Chain state: {continue|needs_approval|blocked|complete}74Next skill: {aca-skill-name|none}75Reason: {why this handoff is or is not needed}76Carry forward: {org_id/name, product_id, icp_id, lead_list_id, campaign_id, sequence_id, job_id, approvals, constraints}77```7879## ACA tools used8081- `list_email_mailboxes`82- `list_sender_accounts`83- `list_email_sequences`, `get_email_sequence`84- `list_campaigns`, `get_campaign`85- `get_lead_list`