engagement-suppression-workflow
정보
이 스킬은 휴면 연락처를 관리하기 위해 억제 전 재유도 시도를 우선하는 2단계 워크플로를 구현합니다. 구성 가능한 비활동 기간 이후 재유도 캠페인을 트리거하며, 두 번째 구성 가능한 기간 내 응답이 없는 경우에만 연락처를 억제합니다. 이메일 전송 능력을 보호하면서 비활성 연락처에게 재유도의 마지막 기회를 제공하기 위해 사용하세요.
빠른 설치
Claude Code
추천npx skills add TomGranot/hubspot-admin-skills -a claude-code/plugin add https://github.com/TomGranot/hubspot-admin-skillsgit clone https://github.com/TomGranot/hubspot-admin-skills.git ~/.claude/skills/engagement-suppression-workflowClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
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_flagorreengagement_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:
- Open the HubSpot workflow builder in Chrome (Automation > Workflows > Create workflow)
- Activate the Claude Chrome extension
- 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
-
Create your suppression status property (e.g.,
engagement_flagorreengagement_status) if it does not exist:- Object: Contact
- Type: Dropdown select
- Options: "re-engagement sent", "suppressed", blank/unknown
- Group: Contact information
-
Create or identify a re-engagement email/sequence. A simple 1-2 email series asking "Still interested?" with a clear CTA works well.
-
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
-
Set enrollment trigger:
hs_email_last_open_dateis more than your sunset window (typically 120-270 days) ago OR is unknown- AND
emailis known - AND
hs_email_optoutis not true - AND your suppression status property is unknown
-
Action: Set contact property
- Your suppression status property = "re-engagement sent"
-
Action: Enroll in re-engagement sequence (or send re-engagement email)
-
Delay: your re-engagement window (typically 21-45 days)
-
If/then branch:
- Condition:
hs_email_last_open_dateis less than [re-engagement window] days ago ORhs_email_last_click_dateis 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_statusto non-marketing contact (via workflow action — this is the only way to set it, as the API is read-only)
- Condition:
-
Settings:
- Re-enrollment: OFF
- Goal: Contact opens or clicks any email (optional — exits workflow early)
-
Turn on the workflow.
Stage 3: After — Verify
- 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
- Monitor deliverability metrics weekly for the first month.
- Track how many contacts re-engage vs. get suppressed — adjust the sunset window if needed.
Stage 4: Rollback
- Turn off the workflow.
- To reverse suppressions: filter contacts where your suppression status property = "suppressed" and manually set them back to marketing contacts in the UI.
- 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.
GitHub 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
