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.
npx agentmods add commands/activecampaign/activecampaign-plugin/audience-healthgit clone --depth 1 https://github.com/ActiveCampaign/activecampaign-pluginWrote 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/commands/activecampaign/activecampaign-plugin/audience-health)<a href="https://agentmods.dev/commands/activecampaign/activecampaign-plugin/audience-health"><img src="https://agentmods.dev/badge/commands/activecampaign/activecampaign-plugin/audience-health.svg" alt="Measured on agentmods" 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.00015 | $0.00877 |
| Opus 5 | $0.00008 | $0.00439 |
| Sonnet 5 | $0.00003 | $0.00175 |
| Haiku 4.5 | $0.00002 | $0.00088 |
Grade A, and why
audience-health 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 6d 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 — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/audience-health
Analyze contact list health, engagement levels, and data quality.
Instructions
When the user runs /audience-health, produce a comprehensive health assessment of their contact database.
Server rule: The MCP server does not compute aggregates or percentages, and you must not page the entire contact database to derive them. Use each
list_*query's returned count for a given status filter (one call per turn per tool), and present those counts as-is. Do not turn them into percentages of a fabricated total, and do not compute an "average field completion %". Where you can only sample, label it clearly as a sample, not a measured rate.
Steps
-
List overview: Use
list_liststo get lists and the subscriber counts the API returns per list. -
Contact status counts: Use
list_contactsfiltered by status, one status per query as needed, and report the count each query returns: active, unsubscribed, bounced, unconfirmed. Present them as raw counts side by side — do not convert to percentages of a total. -
Tag analysis: Use
list_tagsto assess tag usage qualitatively — how many tags exist, whether naming looks consistent, signs of ad-hoc/over-tagging. -
Custom field coverage: Use
list_contact_custom_fieldsto see what fields exist. You mayget_contacton a small sample to illustrate which fields tend to be filled — present this explicitly as anecdotal sampling, never as an "average completion %". -
Engagement sampling: Use
list_email_activitiesto sample recent engagement and describe, qualitatively, who is engaging recently vs. who looks dormant. Label these as observations from a sample, not full-population segment sizes. -
Present the health report in this format:
## Audience Health Report
### Contact Status (counts as returned per status query)
| Status | Count |
|--------|-------|
| Active | [N] |
| Unsubscribed | [N] |
| Bounced | [N] |
| Unconfirmed | [N] |
(Raw counts from each filtered query — not percentages of a total.)
### Lists
| List | Subscribers (as returned) | Notes |
|------|---------------------------|-------|
| ... | ... | ... |
### Engagement (from a sample, not a full census)
- Recently engaged (opened/clicked, last ~30d): observed in the sample
- Looks dormant (no recent activity in the sample): …
> These are qualitative observations from sampled activity. For true engagement segment sizes, build a segment in AC.
### Data Quality
- **Custom fields defined**: [N]
- **Fields that looked sparsely filled in the sample**: [names] (anecdotal, from sampled contacts)
### Tag Organization
- **Total tags**: [N]
- **Naming consistency**: [qualitative read]
- **Suggestions**: [specific tag cleanup recommendations]
### Recommendations
#### Immediate Actions
1. **Review bounced contacts** — [N, the returned count] bounced contacts can hurt deliverability
2. [Other immediate action]
#### Short-term Improvements
1. **Re-engagement campaign** — for contacts that look dormant
2. [Other improvement]
#### Long-term Strategy
1. **Sunset policy** for long-inactive contacts
2. [Other strategic recommendation]
### Not measured here
- Percentages, averages, and full-population engagement segment sizes aren't available via MCP — build a segment in AC or use native reporting for those.
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.
- 6d ago First seen · 87 lines · 15 tokens per session scan A 92aaac7279fe
audience-health is a command published in the GitHub repository ActiveCampaign/activecampaign-plugin (0 stars, last pushed 5d ago), licensed MIT. It adds 15 tokens to every session and 877 once invoked, about $0.0001 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-30.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.