Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

bounce-monitoring-workflow弹跳监控工作流程

Agent Skill

bounce-monitoring-workflow 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

14

下载量

63
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bounce-monitoring-workflow(弹跳监控工作流程)
来源仓库:https://github.com/tomgranot/hubspot-admin-skills
仓库路径:skills/bounce-monitoring-workflow
安装命令:
npx skills add https://github.com/tomgranot/hubspot-admin-skills --skill bounce-monitoring-workflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tomgranot/hubspot-admin-skills --skill bounce-monitoring-workflow

简介

bounce-monitoring-workflow 提供邮件弹跳检测和抑制功能,保护发件人信誉。

  • 适用场景包括硬弹跳警报、自动抑制和手动审查,确保营销邮件的稳定性和有效性。
  • 核心能力包括条件触发、行动执行和阈值管理,适用于 HubSpot Marketing Professional 或更高版本。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Bounce Monitoring Workflow

Protect your email sender reputation with automated bounce detection and suppression. This workflow catches bounces as they happen rather than waiting for periodic cleanup.

How It Works

ConditionAction
Hard bounce detectedAlert admin immediately, suppress contact
Suppression threshold reached (commonly 2-3 bounces)Auto-suppress from marketing emails
Review threshold reached (commonly 3-5 bounces)Flag for weekly manual review (delete vs. recover)

Prerequisites

  • HubSpot Marketing Professional or Enterprise plan
  • A custom contact property (e.g., email_health_flag or delivery_status) — checkbox or dropdown with value: "flagged for review"
  • Admin email or Slack channel for hard bounce alerts

Building the Workflow: Three Options

Option 1: Manual UI Build

Follow the step-by-step instructions in the "Execute" section below. This is the most reliable method and gives you full control over every trigger, branch, and action.

Option 2: HubSpot Breeze AI

HubSpot's built-in Breeze AI can generate a workflow skeleton from a natural language prompt. Navigate to Automation > Workflows > Create workflow > "Describe what you want" and paste the following prompt:

Create a contact-based workflow that triggers when the "Email Bounce" property
is known (has a value). The workflow should:

1. First, check if the contact has a hard bounce reason (hard_bounce_reason is known):
   - If YES: send an internal notification saying "Hard bounce: [email]" and set the
     contact as a non-marketing contact
   - If NO: continue to the next check

2. Check if the bounce count is greater than or equal to [your suppression threshold, commonly 2-3]:
   - If YES: set the contact as a non-marketing contact, then check if bounce count
     is >= [your review threshold, commonly 3-5]. If so, set a custom property
     "[your bounce review property]" to "flagged" and send an internal notification
     saying "Contact [email] has [review threshold]+ bounces - review for deletion"
   - If NO: end (below threshold, monitor only)

Enable re-enrollment so the contact re-enters if their bounce count increases.

CRITICAL WARNING: Breeze trigger limitations. Breeze creates event-based triggers (OR logic) instead of filter-based triggers (AND logic). After Breeze creates the workflow, you MUST manually verify and fix the trigger/enrollment conditions in the UI. Breeze is best used for creating the workflow skeleton (actions, branches, delays) -- the trigger conditions almost always need manual correction.

Additional Breeze limitations for this workflow:

  • Breeze cannot create "is unknown" branch conditions -- you must verify that branch conditions checking for hard bounce reason are correctly configured
  • Breeze cannot configure re-enrollment rules -- you must enable re-enrollment manually
  • Breeze may flatten the nested branch structure (hard bounce check > 2+ bounces > 3+ bounces) into a single level

Option 3: Claude Anthropic Chrome Extension

The Claude Anthropic Chrome extension lets Claude see and interact with the HubSpot workflow builder UI directly. You can describe the workflow logic in natural language and Claude will click through the UI to build it. This is often more accurate than Breeze for workflows with nested branching logic (this workflow has three levels of branches), because Claude can verify the branch hierarchy visually.

To use this approach:

  1. Open the HubSpot workflow builder in Chrome (Automation > Workflows > Create workflow)
  2. Activate the Claude Chrome extension
  3. Describe the workflow using the design table and instructions from this skill
Note on Fast Mode: If you're using Claude Code's Fast Mode to speed up workflow creation, be aware of the billing model: Haiku usage is included in your subscription, but Opus in Fast Mode consumes extra credits. For workflow building tasks (which are UI-heavy and may require many interactions), consider whether the speed tradeoff is worth the credit cost.

Step-by-Step Build Instructions

Stage 1: Before — Create Properties

  1. Create your bounce review property (e.g., email_health_flag or delivery_status):

- Object: Contact - Type: Single checkbox or dropdown - Group: Contact information

  1. Identify your current bounce baseline — run a quick search for contacts where hs_email_bounce > 0 to understand the starting volume.

Stage 2: Execute — Build the Workflow

Build a single contact-based workflow with branching logic.

  1. Trigger: hs_email_bounce is known (fires when bounce count updates)
  2. Branch 1: Hard bounce check

- Condition: hs_email_hard_bounce_reason_enum is known - YES: - Send internal notification: "Hard bounce: {email} — {hs_email_hard_bounce_reason_enum}" - Set hs_marketable_status to non-marketing (workflow action) - NO: Continue to Branch 2

  1. Branch 2: Bounce count >= your suppression threshold (commonly 2-3)

- Condition: hs_email_bounce is greater than or equal to your suppression threshold - YES: - Set hs_marketable_status to non-marketing (workflow action) - Continue to Branch 3 - NO: No action (below threshold — monitor only)

  1. Branch 3: Bounce count >= your review threshold (commonly 3-5)

- Condition: hs_email_bounce is greater than or equal to your review threshold - YES: - Set your bounce review property = flagged - Send internal notification: "Contact {email} has [review threshold]+ bounces — review for deletion" - NO: No further action

  1. Settings:

- Re-enrollment: ON (contact should re-enter if bounce count increases) - Goal: None

  1. Turn on the workflow.

Stage 3: After — Verify

  1. Check workflow history after the first week of email sends.
  2. Review the flagged contacts list weekly — decide for each contact:

- Delete if the email is clearly invalid (typo domain, defunct company) - Attempt recovery if the domain is valid (could be a temporary mailbox issue)

  1. Monitor overall bounce rate in HubSpot email health dashboard.

Stage 4: Rollback

  1. Turn off the workflow.
  2. Contacts already suppressed remain non-marketing. To reverse:

- Filter contacts suppressed by this workflow (check your bounce review property or workflow history) - Manually set back to marketing contacts in the UI

  1. Clear your bounce review property values in bulk if needed.

Weekly Review Process

For contacts flagged at your review threshold:

  1. Export the flagged contacts list.
  2. For each contact, check:

- Is the email domain still active? (Quick MX record check) - Is this a known customer or high-value contact? - Was the bounce recent or historical?

  1. Delete contacts with invalid domains or clearly fake emails.
  2. Keep suppressed contacts with valid domains but repeated soft bounces.
  3. Clear the bounce review property after review.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.42%
按下载量换算23

Claude

27.38%
按下载量换算17

Cursor

17.76%
按下载量换算11

Gemini CLI

10.07%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills