ACA deliverability test
Create a low-risk preflight plan for email sending.
Rules
- Do not send test traffic without approval.
- Keep tests small.
- Test infrastructure, copy, tracking, and enrollment separately where possible.
Workflow
- Inspect
list_email_mailboxes, list_email_sequences, list_sender_accounts, and list_lead_lists.
- Choose the asset to test: mailbox, sequence, campaign, or list.
- Review copy with
aca-copy-spam-checker.
- Build a test plan:
- Test list size
- Mailboxes included
- Daily cap
- Send window
- Pass/fail criteria
- If approved, create or update a draft sequence with
create_email_sequence or update_email_sequence, enroll test leads with enroll_leads, and activate with toggle_email_sequence.
- Record the test plan with
create_strategy_document.
Output format
Deliverability test plan:
Asset: {sequence/campaign/mailbox}
Sample size: {n}
Mailboxes: {mailboxes}
Pass criteria: {criteria}
Risk: {low/medium/high}
Approval needed before sending: yes
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-email-deliverability-audit, aca-email-infra-readiness, or before a high-risk launch.
Auto-continue conditions
- Test plan needs a sequence -> continue to
aca-email-sequence-manager.
- Test passes and campaign exists -> continue to
aca-launch-outreach.
- Test fails -> continue to
aca-deliverability-incident-response.
Stop before chaining when
- Ask before sending test traffic.
Downstream skills
aca-email-sequence-manager - create/enroll test sequence.
aca-launch-outreach - proceed after passing.
aca-deliverability-incident-response - triage failures.
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, create_email_sequence, update_email_sequence, toggle_email_sequence, enroll_leads
list_lead_lists, get_lead_list
create_strategy_document
1---2name: aca-deliverability-test3description: Plan and run a controlled ACA email preflight test. Use before launching a new sequence, new mailbox, new domain, or high-volume campaign.4license: MIT5---67# ACA deliverability test89Create a low-risk preflight plan for email sending.1011## Rules1213- Do not send test traffic without approval.14- Keep tests small.15- Test infrastructure, copy, tracking, and enrollment separately where possible.1617## Workflow18191. Inspect `list_email_mailboxes`, `list_email_sequences`, `list_sender_accounts`, and `list_lead_lists`.202. Choose the asset to test: mailbox, sequence, campaign, or list.213. Review copy with `aca-copy-spam-checker`.224. Build a test plan:23 - Test list size24 - Mailboxes included25 - Daily cap26 - Send window27 - Pass/fail criteria285. If approved, create or update a draft sequence with `create_email_sequence` or `update_email_sequence`, enroll test leads with `enroll_leads`, and activate with `toggle_email_sequence`.296. Record the test plan with `create_strategy_document`.3031## Output format3233```text34Deliverability test plan:35Asset: {sequence/campaign/mailbox}36Sample size: {n}37Mailboxes: {mailboxes}38Pass criteria: {criteria}39Risk: {low/medium/high}40Approval needed before sending: yes41```4243## Skill chaining4445This 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.4647**Upstream**48- Called by `aca-email-deliverability-audit`, `aca-email-infra-readiness`, or before a high-risk launch.4950**Auto-continue conditions**51- Test plan needs a sequence -> continue to `aca-email-sequence-manager`.52- Test passes and campaign exists -> continue to `aca-launch-outreach`.53- Test fails -> continue to `aca-deliverability-incident-response`.5455**Stop before chaining when**56- Ask before sending test traffic.5758**Downstream skills**59- `aca-email-sequence-manager` - create/enroll test sequence.60- `aca-launch-outreach` - proceed after passing.61- `aca-deliverability-incident-response` - triage failures.6263**Handoff block**6465```text66Chain state: {continue|needs_approval|blocked|complete}67Next skill: {aca-skill-name|none}68Reason: {why this handoff is or is not needed}69Carry forward: {org_id/name, product_id, icp_id, lead_list_id, campaign_id, sequence_id, job_id, approvals, constraints}70```7172## ACA tools used7374- `list_email_mailboxes`, `list_sender_accounts`75- `list_email_sequences`, `get_email_sequence`, `create_email_sequence`, `update_email_sequence`, `toggle_email_sequence`, `enroll_leads`76- `list_lead_lists`, `get_lead_list`77- `create_strategy_document`