Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

create-icp-tiers创建 icp 等级

Agent Skill

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

总安装

3,041

周安装

123

GitHub Stars

公开资料未说明

下载量

954
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:create-icp-tiers(创建 icp 等级)
来源仓库:https://github.com/tomgranot/create-icp-tiers
安装命令:
openclaw skills install create-icp-tiers
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install create-icp-tiers

简介

根据行业与员工规模划分公司理想客户档案层级结构。create-icp-tiers 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 通过 API 调用生成自定义属性用于精准营销目标筛选定位。
  • 适用于 B2B 销售漏斗优化与客户画像精细化运营分析需求。
  • 输入统计维度后可自动聚类形成分层标签体系供后续调用。
  • 建议结合历史成交数据校准分层阈值提高转化预测准确性。

SKILL.md

name
create-icp-tiers
description
Classify companies into Ideal Customer Profile (ICP) tiers based on firmographic data (industry + employee count). Creates a custom property via API and 4 classification workflows in HubSpot UI.
license
MIT
metadata
author
tomgranot
version
1.0
category
segmentation-scoring

Create ICP Tier Property and Classification Workflows

Classify every company in the CRM into an Ideal Customer Profile tier based on firmographic data. Creates a custom dropdown property and 4 automated workflows that continuously classify companies as they enter or change.

Why This Matters

Without ICP classification, every inbound lead looks the same regardless of whether they come from a large enterprise in a target vertical or a tiny company in an irrelevant industry. Sales and marketing have no systematic way to prioritize outreach, allocate resources, or differentiate campaigns by company fit. ICP Tier is also a major input to the lead scoring model.

Prerequisites

  • Super Admin permissions in HubSpot
  • Access to Automation > Workflows (Marketing Hub Professional or higher)
  • Data enrichment processes completed (company name, industry, geo values) so company data is as complete as possible
  • Company properties Number of Employees and Industry should be well-populated. Check coverage:

- Industry: aim for 80%+ populated - Employee count: aim for 80%+ populated - Companies missing these fields will fall to "Not ICP" (conservative, intentional)

Interview: Gather Requirements

Before executing, collect the following information from the user:

Q1: What industries define your ideal customer?

  • Examples: Manufacturing, Professional Services, Logistics, Retail, Education, Media & Entertainment, Hospitality, Real Estate, Agriculture
  • Default: No default -- this is highly business-specific and must be provided by the user

Q2: What employee count ranges define your tiers?

  • Examples: Tier 1: 1,000+, Tier 2: 200-999, Tier 3: 50-199, Not ICP: under 50
  • Default: Tier 1: 1,000+, Tier 2: 200-999, Tier 3: 50-199

Q3: Are there any other firmographic criteria?

  • Examples: Annual revenue thresholds, geographic restrictions (US-only, EMEA, etc.), specific technologies used, funding stage
  • Default: None -- industry and employee count are the primary classification axes

Plan

  1. Define your ICP tier criteria (industry verticals + employee count thresholds)
  2. Create the ICP Tier custom property via API or UI
  3. Build 4 classification workflows (Tier 1, Tier 2, Tier 3, Not ICP)
  4. Activate workflows in staggered sequence
  5. Verify classification results (after state)

Before State

Define Your ICP Tiers

Before building anything, define your criteria framework:

TierLabelIndustry VerticalsEmployee Threshold
Tier 1Primary ICP[Your primary verticals, e.g., Manufacturing, Professional Services, Logistics][e.g., 1,000+]
Tier 2Secondary ICP[Your secondary verticals, e.g., Retail, Education, Media & Entertainment][e.g., 200+]
Tier 3Tertiary ICP[Your tertiary verticals, e.g., Hospitality, Real Estate, Agriculture][e.g., 200+]
Not ICPNot ICPEverything elseAny

Size-based demotion pattern: Companies in a higher-tier industry but below that tier's employee threshold should be demoted to the next tier down, not classified as "Not ICP". For example:

  • A company in a Tier 1 industry with fewer than 1,000 but more than 200 employees -> Tier 2
  • A company in a Tier 2 industry with fewer than 200 but more than 50 employees -> Tier 3
  • Only companies below 50 employees in any ICP industry, or in non-ICP industries entirely, should be "Not ICP"

This ensures ICP-relevant companies are never lost due to size alone.

Audit Current State

import os
from hubspot import HubSpot
from dotenv import load_dotenv

load_dotenv()
api_client = HubSpot(access_token=os.getenv("HUBSPOT_API_TOKEN"))

# Check if ICP Tier property already exists
# Use your chosen property name (e.g., "company_segment", "buyer_tier", "icp_tier")
PROPERTY_NAME = "company_segment"
try:
    prop = api_client.crm.properties.core_api.get_by_name(
        object_type="companies", property_name=PROPERTY_NAME
    )
    print(f"ICP Tier property exists: {prop.label}")
except Exception:
    print(f"ICP Tier property '{PROPERTY_NAME}' does not exist yet")

# Check data coverage for classification
for prop_name in ["industry", "numberofemployees"]:
    result = api_client.crm.companies.search_api.do_search(
        public_object_search_request={
            "filterGroups": [{
                "filters": [{
                    "propertyName": prop_name,
                    "operator": "NOT_HAS_PROPERTY"
                }]
            }],
            "limit": 0
        }
    )
    print(f"Companies missing {prop_name}: {result.total}")

Execute

Step 1: Create the ICP Tier Property

Choose a property name that fits your CRM conventions (e.g., company_segment, buyer_tier, or icp_tier). The name is configurable -- just be consistent across workflows and lists.

Via API (recommended):

from hubspot.crm.properties import ModelProperty, PropertyCreate

# Configure your property name here
PROPERTY_NAME = "company_segment"

api_client.crm.properties.core_api.create(
    object_type="companies",
    property_create=PropertyCreate(
        name=PROPERTY_NAME,
        label="ICP Tier",
        type="enumeration",
        field_type="select",
        group_name="companyinformation",
        description="Automated ICP classification based on industry and employee count. Set by workflow - do not edit manually.",
        options=[
            {"label": "Tier 1 - Primary ICP", "value": "tier_1_primary", "displayOrder": 0},
            {"label": "Tier 2 - Secondary ICP", "value": "tier_2_secondary", "displayOrder": 1},
            {"label": "Tier 3 - Tertiary ICP", "value": "tier_3_tertiary", "displayOrder": 2},
            {"label": "Not ICP", "value": "not_icp", "displayOrder": 3},
        ]
    )
)

Via UI: Settings > Properties > Company properties > Create property > Dropdown select with the four tier options.

Step 2: Build Classification Workflows

Build 4 company-based workflows in the HubSpot UI. Workflows must use filter-based triggers ("When filter criteria is met") with AND logic.

Building the Classification Workflows: Three Options

Option 1: Manual UI Build. Follow the per-workflow specifications below. This is the most reliable method and gives you full control over every trigger and action.

Option 2: HubSpot Breeze AI. Navigate to Automation > Workflows > Create workflow > "Describe what you want" and paste the following prompt (repeat for each tier, adjusting the tier name, industries, and thresholds):

Create a company-based workflow that triggers when filter criteria is met:
- Number of Employees is greater than or equal to [THRESHOLD]
- AND Industry is any of [LIST YOUR INDUSTRIES]
- AND the custom property "ICP Tier" is unknown

The workflow should set the custom property "ICP Tier" to "[TIER VALUE]".
Enable re-enrollment for all trigger properties.

For the Not ICP catch-all workflow, use:

Create a company-based workflow that triggers when filter criteria is met:
- Custom property "ICP Tier" is unknown

The workflow should wait a delay (30-90 minutes) to let tiered workflows process first, then set the custom property "ICP Tier" to "Not ICP".
Enable re-enrollment.

CRITICAL WARNING: Breeze trigger limitations. Breeze creates event-based triggers (OR logic) instead of filter-based triggers (AND logic). This is especially dangerous for ICP classification because event-based triggers fire when any single property changes, regardless of other conditions, leading to incorrect tier assignments. After Breeze creates each workflow, you MUST manually verify and rebuild the triggers to use filter-based enrollment with AND logic. Breeze is best used for creating the workflow skeleton (actions, delays) -- the trigger conditions almost always need manual correction.

Additional Breeze limitations:

  • Breeze cannot create "is unknown" filter conditions reliably -- verify that the "ICP Tier is unknown" guard is correctly configured
  • Breeze cannot configure re-enrollment rules
  • Breeze cannot create multiple filter groups with OR between groups and AND within groups (needed for Tier 2 and Tier 3 demotion logic)

Option 3: Claude Anthropic Chrome Extension. The Claude Chrome extension lets Claude see and interact with the HubSpot workflow builder UI directly. You can describe each workflow's logic in natural language and Claude will click through the UI to build it. This is often more accurate than Breeze for the ICP workflows because of their complex multi-group filter logic and the critical requirement for AND-based triggers. Build the four workflows one at a time, activating in the staggered sequence described in Step 3.

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.

Workflow Specifications

Workflow 1: Tier 1 (Primary ICP)

  • Name: ICP TIER: Assign Tier 1 - Primary ICP
  • Trigger: When filter criteria is met

- Number of Employees >= [your threshold, e.g., 1,000] - AND Industry is any of [your primary verticals and their variants]

  • Re-enrollment: ON (for all trigger properties)
  • Action: Set ICP Tier = "Tier 1 - Primary ICP"

Industry variant tip: HubSpot has multiple labels for the same vertical. For example, "Manufacturing" might appear as "Manufacturing", "Industrial Automation", "Machinery", "Electrical/Electronic Manufacturing". Include ALL relevant variants in the "is any of" filter. Check what values actually exist in your data.

Workflow 2: Tier 2 (Secondary ICP)

  • Name: ICP TIER: Assign Tier 2 - Secondary ICP
  • Trigger: When filter criteria is met

Filter Group 1 — Secondary industries at threshold:

  • Number of Employees >= [e.g., 200]
  • AND Industry is any of [your secondary verticals and variants]
  • AND ICP Tier is unknown (prevents overwriting Tier 1)

Filter Group 2 — Primary industries demoted by size:

  • Number of Employees >= [e.g., 200]
  • AND Number of Employees <= [e.g., 999]
  • AND Industry is any of [your primary verticals and variants]
  • AND ICP Tier is unknown
  • Re-enrollment: ON
  • Action: Set ICP Tier = "Tier 2 - Secondary ICP"

Workflow 3: Tier 3 (Tertiary ICP)

  • Name: ICP TIER: Assign Tier 3 - Tertiary ICP
  • Trigger: When filter criteria is met
  • Multiple filter groups for:

- Tertiary industries at threshold - Primary industries demoted by size (below Tier 2 threshold) - Secondary industries demoted by size (below Tier 2 threshold) - Each group includes AND ICP Tier is unknown

  • Re-enrollment: ON
  • Action: Set ICP Tier = "Tier 3 - Tertiary ICP"

Workflow 4: Not ICP (Catch-All)

  • Name: ICP TIER: Assign Not ICP
  • Trigger: When filter criteria is met

- ICP Tier is unknown

  • Re-enrollment: ON
  • Action 1: Delay (30-90 minutes) to let tiered workflows process first
  • Action 2: Set ICP Tier = "Not ICP"

Step 3: Activation Sequence

Activate workflows in staggered sequence to prevent race conditions:

  1. Activate Tier 1 workflow -> enroll existing companies
  2. Wait a few minutes (3-10 minutes)
  3. Activate Tier 2 workflow -> enroll existing companies
  4. Wait a few minutes (3-10 minutes)
  5. Activate Tier 3 workflow -> enroll existing companies
  6. Wait a few minutes (3-10 minutes)
  7. Activate Not ICP workflow -> enroll existing companies

The stagger ensures higher-priority tiers process first. The "ICP Tier is unknown" filter on Tiers 2-4 prevents overwriting, and the delay on Not ICP provides additional buffer.

After State

Wait 2-4 hours for all workflows to process, then verify.

# Use the same property name you chose in Step 1
PROPERTY_NAME = "company_segment"

# Check coverage
result = api_client.crm.companies.search_api.do_search(
    public_object_search_request={
        "filterGroups": [{
            "filters": [{
                "propertyName": PROPERTY_NAME,
                "operator": "NOT_HAS_PROPERTY"
            }]
        }],
        "limit": 0
    }
)
print(f"Companies without ICP Tier: {result.total} (should be 0)")

# Check distribution
for tier_value in ["tier_1_primary", "tier_2_secondary", "tier_3_tertiary", "not_icp"]:
    result = api_client.crm.companies.search_api.do_search(
        public_object_search_request={
            "filterGroups": [{
                "filters": [{
                    "propertyName": PROPERTY_NAME,
                    "operator": "EQ",
                    "value": tier_value
                }]
            }],
            "limit": 0
        }
    )
    print(f"  {tier_value}: {result.total}")

Verification checklist:

  1. Total coverage: 0 companies with ICP Tier unknown
  2. Distribution sanity: Tier 1 should be the smallest group, Not ICP the largest. If Tier 1 is huge, the employee threshold may be too low or industry list too broad.
  3. Spot-check Tier 1: Open 5-10 Tier 1 companies. Confirm each has the correct employee count and industry.
  4. Spot-check demotions: Find Tier 2 companies in primary ICP industries. Confirm they have employee counts below the Tier 1 threshold but above the Tier 2 threshold.
  5. Spot-check Not ICP: Open 5-10 Not ICP companies. Confirm each has at least one disqualifying factor (low employee count, non-ICP industry, or missing data).
  6. Check workflow errors: Review each workflow's history for failures.

Key Technical Learnings

  • CRITICAL: Breeze AI creates wrong trigger types. Breeze generates event-based triggers (OR logic between groups) instead of filter-based triggers (AND logic within groups). Event-based triggers mean any single property change enrolls the company regardless of other conditions. Always verify triggers manually or build them from scratch.
  • Activation sequence prevents race conditions. Stagger activation (Tier 1 first, then 2, then 3, then Not ICP) so higher-priority tiers claim companies before lower tiers. The "ICP Tier is unknown" filter provides additional protection.
  • The delay on Not ICP is critical. Without it, the catch-all workflow would classify companies as Not ICP before tiered workflows have a chance to process them. A delay of 30-90 minutes is typical.
  • Size-based demotion is the key design pattern. Never classify a company in an ICP industry as "Not ICP" just because it is smaller than the primary threshold. Demote to the next tier instead. This preserves ICP-adjacent companies for secondary targeting.
  • Companies with missing data fall to Not ICP. This is intentional and conservative. If you later enrich company data (via data provider, manual entry, or Breeze Intelligence), the re-enrollment triggers automatically reclassify those companies.
  • Do not manually edit ICP Tier values. The workflows manage this property. If you need exceptions, create a separate "ICP Tier Override" property and adjust workflows to respect it.
  • Include industry label variants. HubSpot has multiple labels for the same vertical (e.g., "Manufacturing" vs "Industrial Automation" vs "Machinery" vs "Electrical/Electronic Manufacturing"). Check what values actually exist in your data and include all relevant variants in your workflow filters.
  • Validate with a script after Breeze creates workflows. If your HubSpot API token has the automation-access scope, you can read workflow definitions via the Workflows API and programmatically verify that triggers match your spec.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.01%
按下载量换算706

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills