ワンクリックで
elastic-email-api
How to use the Elastic Email integration for fetching engagement data, bounces, and unsubscribes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
How to use the Elastic Email integration for fetching engagement data, bounces, and unsubscribes
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Deploy files to the Tesseract Academy WordPress site on Cloudways via SSH/SCP
Write B2B cold emails and follow-up sequences that get replies. Adapted from coreyhaines31/marketingskills for the Tesseract Automation Engine. Used by the Sales Director agent and any outreach mission. Must read product-marketing-context before drafting.
Create or optimize email sequences, drip campaigns, and lifecycle email flows. Adapted from coreyhaines31/marketingskills for the Tesseract Automation Engine. Used by the Sales Director agent for nurture sequences and by the Marketing Team for welcome/onboarding flows. Must read product-marketing-context before drafting.
Agent protocol for reading, interpreting, and updating marketing funnel documentation.
State-machine driven iterative planning and execution for complex coding tasks. Cycle: Explore → Plan → Execute → Reflect → Validate → Close / Re-plan. Filesystem as persistent memory. Use for multi-file tasks, migrations, refactoring, failed tasks, audit remediations, or anything non-trivial.
Write high-converting landing page copy. Used by the Iterative Planner and PageMigrator workflows for optimizing or rebuilding web pages. Must read product-marketing-context before drafting.
| name | elastic-email-api |
| description | How to use the Elastic Email integration for fetching engagement data, bounces, and unsubscribes |
This skill exposes the Elastic Email internal connector, enabling agents to fetch email delivery analytics and lists of unengaged or bounced contacts. Elastic Email is used as the email sending platform (ESP) for Tesseract's bulk campaigns (e.g. through GoHighLevel), and direct querying is often required when GHL abstracts or hides the underlying email bounce metrics.
The Elastic Email stack consists of:
tesseract_operator/connectors/elastic.py -> ElasticEmailConnectortesseract_operator/skills/elastic_skills.pyELASTIC_EMAIL_API_KEY in .env (maps to OperatorConfig.elastic_email_api_key)elastic.contact.getFetches a single contact's engagement profile directly from Elastic Email to verify deliverability status (Active, Bounced, Unsubscribed, etc).
email (str)elastic.contacts.load_bouncedFetches all bounces from the Elastic Email API up to the max_fetch parameter using cursor pagination.
max_fetch (int, default: 50,000)elastic.contacts.load_unsubscribedFetches all unsubscribed contacts.
max_fetch (int, default: 50,000)v4 API by default (https://api.elasticemail.com/v4/).X-ElasticEmail-ApiKey header. The connector manages this automatically..agent/workflows/ghl-email-cleanup.md and scripts/ghl_email_cleanup.py for an example of cross-platform sanitization logic.