Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

engagement-suppression-workflow参与抑制工作流程

Agent Skill

engagement-suppression-workflow 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,144

周安装

178

GitHub Stars

公开资料未说明

下载量

1,452
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:engagement-suppression-workflow(参与抑制工作流程)
来源仓库:https://github.com/tomgranot/engagement-suppression-workflow
安装命令:
openclaw skills install engagement-suppression-workflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install engagement-suppression-workflow

简介

构建双层日落流程以重新激活休眠联系人。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

  • 适用于客户生命周期管理与再营销策略设计。
  • 第一层在用户不活跃后触发重新参与机制。
  • 需结合具体业务规则配置触发条件与执行动作。
  • engagement-suppression-workflow 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
engagement-suppression-workflow
description
Build a two-tier sunset workflow that re-engages dormant contacts before suppressing them. Tier 1 triggers a re-engagement campaign after a configurable inactivity window. Tier 2 suppresses contacts that fail to re-engage within a configurable re-engagement window.
license
MIT
metadata
author
tomgranot
version
1.0
category
automation-workflows

Engagement-Based Suppression Workflow

Build a two-tier sunset system that protects email deliverability while giving disengaged contacts a fair chance to re-engage before suppression.

Why Two Tiers Matter

Suppressing contacts immediately after inactivity is aggressive and loses potential re-activations. A two-tier approach:

  • Tier 1 (inactive for your sunset window — typically 120-270 days): Triggers a re-engagement campaign — a last chance to interact.
  • Tier 2 (your re-engagement window after Tier 1 — typically 21-45 days — with still no engagement): Suppresses the contact from marketing emails.

This preserves deliverability scores while maximizing the recoverable audience.

Prerequisites

  • HubSpot Marketing Professional or Enterprise plan
  • A re-engagement email campaign or sequence ready to send
  • A custom dropdown property to track suppression status (e.g., engagement_flag or reengagement_status — dropdown with values: "re-engagement sent", "suppressed")

Workflow Design

TRIGGER: Last engagement date > [sunset window] ago
         AND email is known
         AND not globally unsubscribed
         AND [suppression status property] is unknown
              │
              ▼
     ┌────────────────────┐
     │ Set [status prop]   │
     │ = "re-engagement    │
     │    sent"            │
     └────────┬───────────┘
              │
              ▼
     ┌────────────────────┐
     │ Enroll in           │
     │ re-engagement       │
     │ campaign/sequence   │
     └────────┬───────────┘
              │
              ▼
     ┌────────────────────┐
     │ Delay: [re-engage    │
     │  window] days       │
     └────────┬───────────┘
              │
              ▼
     ┌────────────────────┐
     │ IF/THEN BRANCH:     │
     │ Any engagement in   │
     │ re-engage window?   │
     ├──────────┬─────────┘
     │ YES      │ NO
     │          │
     ▼          ▼
   Clear     Set [status prop]
   status    = "suppressed"
   prop      + set non-marketing

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 for a two-tier sunset/re-engagement system.
Enrollment trigger: contacts where the last email open date is more than [sunset window] days ago,
AND email is known, AND they are not globally unsubscribed, AND a custom property
"[your suppression status property]" is unknown.

The workflow should:
1. Set the contact property "[your suppression status property]" to "re-engagement sent"
2. Enroll the contact in a re-engagement email sequence
3. Wait [re-engagement window] days
4. Check if the contact has opened or clicked any email in the last [re-engagement window] days
   - If YES (re-engaged): clear the "[your suppression status property]" property
   - If NO (still disengaged): set "[your suppression status property]" to "suppressed" and set the contact
     as a non-marketing contact

CRITICAL WARNING: Breeze trigger limitations. Breeze creates event-based triggers (OR logic) instead of filter-based triggers (AND logic). This is a known limitation. After Breeze creates the workflow, you MUST manually verify and fix the trigger/enrollment conditions in the UI. The enrollment trigger for this workflow requires AND logic across four conditions -- Breeze will likely create them as separate OR conditions, which would enroll contacts incorrectly. 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 add these manually
  • Breeze cannot configure re-enrollment rules
  • Breeze cannot set up workflow goals (early exit on re-engagement)

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 complex workflows because Claude can verify each step visually, including the multi-condition AND enrollment trigger and the "is unknown" checks that Breeze cannot handle.

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 diagram 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 — Prepare

  1. Create your suppression status property (e.g., engagement_flag or reengagement_status) if it does not exist:

- Object: Contact - Type: Dropdown select - Options: "re-engagement sent", "suppressed", blank/unknown - Group: Contact information

  1. Create or identify a re-engagement email/sequence. A simple 1-2 email series asking "Still interested?" with a clear CTA works well.
  1. Define "engagement" for your branch condition. Recommended: email open OR email click OR form submission OR page view within your re-engagement window (typically 21-45 days).

Stage 2: Execute — Build the Workflow

  1. Set enrollment trigger:

- hs_email_last_open_date is more than your sunset window (typically 120-270 days) ago OR is unknown - AND email is known - AND hs_email_optout is not true - AND your suppression status property is unknown

  1. Action: Set contact property

- Your suppression status property = "re-engagement sent"

  1. Action: Enroll in re-engagement sequence (or send re-engagement email)
  1. Delay: your re-engagement window (typically 21-45 days)
  1. If/then branch:

- Condition: hs_email_last_open_date is less than [re-engagement window] days ago OR hs_email_last_click_date is less than [re-engagement window] days ago - YES (re-engaged): Set your suppression status property to blank/unknown (clears flag, contact returns to normal) - NO (still disengaged): Set your suppression status property = "suppressed" and set hs_marketable_status to non-marketing contact (via workflow action — this is the only way to set it, as the API is read-only)

  1. Settings:

- Re-enrollment: OFF - Goal: Contact opens or clicks any email (optional — exits workflow early)

  1. Turn on the workflow.

Stage 3: After — Verify

  1. Spot-check 10-20 contacts that entered the workflow. Confirm:

- Re-engagement email was sent - After 30 days, disengaged contacts were suppressed - Re-engaged contacts had their suppression status property cleared

  1. Monitor deliverability metrics weekly for the first month.
  2. Track how many contacts re-engage vs. get suppressed — adjust the sunset window if needed.

Stage 4: Rollback

  1. Turn off the workflow.
  2. To reverse suppressions: filter contacts where your suppression status property = "suppressed" and manually set them back to marketing contacts in the UI.
  3. Clear the suppression status property values in bulk if needed.

Tuning

  • Shorten the sunset window (e.g., 90-120 days) for aggressive deliverability improvement.
  • Lengthen the re-engagement window (e.g., 45-60 days) if your email cadence is low.
  • Exclude recent customers — add a filter to skip contacts with lifecycle stage = Customer or with a closed-won deal in the last 12 months.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

92.86%
按下载量换算1,348

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills