Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

hubspot-revops-skillHubSpot revops 技能

Agent Skill

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

总安装

903

周安装

38

GitHub Stars

12

下载量

316
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/scientiacapital/skills --skill hubspot-revops-skill

简介

专为企业收入运营(RevOps)设计,整合 HubSpot 数据用于线索评分、转化预测等分析。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中生成销售洞察或优化 pipeline 效率时使用。
  • 安装后通过 npx 命令添加技能,需确认数据模型字段映射和业务规则配置。
  • 建议结合历史数据训练模型,并在生产环境部署前进行 A/B 测试验证效果。
  • 使用前请检查仓库维护状态,确保技能与当前 HubSpot API 版本兼容。

SKILL.md

<quick_start>

  1. Create a HubSpot Private App with required CRM scopes (contacts, companies, deals, owners, timeline)
  2. Confirm SQL replica access and schema prefix for your data warehouse
  3. Run ICP validation query (UC1) to segment conversion rates
  4. Build pipeline forecast (UC5) using stage-specific historical win rates </quick_start>

<success_criteria>

  • HubSpot Private App authenticated with all required scopes
  • SQL warehouse connected and data freshness validated (sync lag < 24h)
  • At least one use case (ICP, scoring, competitive, activity, forecast) producing results
  • Lead scoring model trained on 200+ historical closed deals with measurable AUC
  • Enrichment pipeline writing scores back to HubSpot without duplicates </success_criteria>

HubSpot RevOps Analytics

Revenue analytics infrastructure on HubSpot API + SQL data warehouse. Bridges CRM data → analytics → intelligence products → revenue impact.

Scope: HubSpot-specific analytics stack. For basic CRM CRUD, use crm-integration-skill. For generic dashboards, use data-analysis-skill.


Setup Checklist

1. HubSpot Private App

Note: Tim's HubSpot is accessed via the Epiphan CRM MCP connector — no Private App setup needed. All hubspot_* tools are available directly.

Create at Settings → Integrations → Private Apps:

ScopePermissionWhy
crm.objects.contacts.read/writeRead/WriteContact enrichment
crm.objects.companies.readReadCompany data
crm.objects.deals.read/writeRead/WritePipeline analytics
crm.schemas.custom.readReadCustom objects
crm.objects.owners.readReadRep attribution
timelineReadActivity data

2. SQL Replica Access

Discovery questions for your data warehouse:

QuestionOptions
Where is HubSpot data replicated?Snowflake / BigQuery / Postgres / Redshift
What ETL tool syncs it?Fivetran / Airbyte / Stitch / HubSpot Data Sync
Sync frequency?Real-time / Hourly / Daily
Schema prefix?hubspot. / raw_hubspot. / custom

3. Python Environment

pip install hubspot-api-client pandas scikit-learn requests
# SDK initialization
from hubspot import HubSpot
client = HubSpot(access_token="pat-na1-xxxxx")

# Or raw requests
import requests
HEADERS = {"Authorization": "Bearer pat-na1-xxxxx", "Content-Type": "application/json"}
BASE = "https://api.hubapi.com"

Core Use Cases

#Use CaseInputOutputTools
1ICP ValidationContact + company dataSegment conversion ratesSQL + Clay
2Lead ScoringHistorical dealsWin probability per leadSQL + ML + API
3Competitive IntelDeal close reasonsWin/loss by competitorSQL + webhook
4Activity AnalysisEngagement dataActivity→outcome correlationSQL
5Pipeline ForecastOpen deals + stage historyWeighted revenue forecastSQL

Use Case Details

UC1 — ICP Validation: Join contacts + companies + deals in SQL, segment by industry/size/geo, compute conversion rates per segment. Feed results to Clay MCP waterfall for enrichment:

  1. find-and-enrich-company or find-and-enrich-contacts-at-company to identify target contacts
  2. add-contact-data-points / add-company-data-points to queue enrichment jobs
  3. get-existing-search to poll for results and check state: completed
  4. Write enriched data back to HubSpot via API or Epiphan CRM integration

Alternative: Use Apollo MCP (apollo_people_match) for direct enrichment without waterfall wait.

UC2 — Lead Scoring: Train GradientBoostingClassifier on historical won/lost deals. Features: company size, industry, engagement score, days in pipeline. Deploy scores back to HubSpot as custom property.

UC3 — Competitive Intel: Extract competitor mentions from deal closed_lost_reason. Build win/loss matrix by competitor. Trigger webhook alerts on competitive displacement patterns.

UC4 — Activity Analysis: Correlate email opens, meetings booked, calls logged with deal outcomes. Identify which activities actually move deals forward.

UC5 — Pipeline Forecast: Calculate weighted forecast using stage-specific win rates from historical data. Factor in deal age, velocity, and rep performance.

Reference: See reference/sql-analytics.md for complete SQL templates per use case.

Golden Rules for Prospect Quality

Tim's BDR targeting criteria (as of March 2026) — Apply these filters before outreach:

-- Exclude existing customers and channels
WHERE lifecyclestage NOT IN ('customer')
  AND custom.first_conversion NOT LIKE '%Pearl%'
  AND custom.first_conversion NOT LIKE '%setup%'
  AND custom.first_conversion NOT LIKE '%Connect%'
  AND custom.first_conversion NOT LIKE '%signup%'
  AND device_count < 1
  AND is_channel = false

-- Target only AE territories (Lex Evans, Ron Epstein, Phillip Sandler)
  AND hubspot_owner_id IN (82625923, 423155215, 190030668)

-- Optionally segment by company size, industry, location

Use this filter in:

  • ICP Validation queries (UC1) before Clay enrichment
  • Lead scoring model (UC2) training data
  • Prospect research cadence (prospect-research-to-cadence-skill)

Note: See phone-verification-waterfall-skill for full Golden Rules implementation with Clay MCP integration.


Quick Reference: HubSpot API Endpoints

ObjectEndpointKey Operations
Contacts/crm/v3/objects/contactsSearch, create, update, batch
Companies/crm/v3/objects/companiesSearch, associate to contacts
Deals/crm/v3/objects/dealsPipeline, stage history
Engagements/crm/v3/objects/engagementsEmails, calls, meetings
Properties/crm/v3/properties/{object}Custom property CRUD
Associations/crm/v4/associations/{from}/{to}Object linking
Search/crm/v3/objects/{object}/searchFilter + sort (max 10k)
Reference: See reference/api-guide.md for auth, SDK patterns, batch operations.

Quick Reference: SQL Object Model

HubSpot ObjectSQL Table (typical)Key ColumnsJoin Key
Contactshubspot.contactsemail, lifecycle_stage, lead_scorecontact_id
Companieshubspot.companiesdomain, industry, employee_countcompany_id
Dealshubspot.dealsamount, stage, close_date, pipelinedeal_id
Deal Stageshubspot.deal_stage_historystage, timestamp, durationdeal_id
Engagementshubspot.engagementstype, created_at, contact_idengagement_id
Ownershubspot.ownersemail, first_name, teamowner_id

Join pattern: contacts → associations → companies/deals (via association tables)


Integration Points

SkillRelationship
crm-integration-skillBase CRUD patterns, auth setup
data-analysis-skillVisualization, Streamlit dashboards
sales-revenue-skillPipeline metrics, MEDDIC context, forecasting
research-skillMarket/competitive research methodology
cost-metering-skillTrack API calls + Clay enrichment spend
prospect-research-to-cadence-skillAutomated deal flow, Golden Rules filter
deal-momentum-analyzer-skillPipeline health scoring

MCP Integration Points

MCP ConnectorTools Available
Epiphan CRMhubspot_search_companies, hubspot_search_contacts, hubspot_search_deals, hubspot_get_company, hubspot_get_contact, hubspot_get_deal, crm_search_customers, crm_get_customer, crm_get_order, crm_get_customer_orders, analytics_get_device, analytics_search_by_email, ask_agent (AI queries)
Clay MCPfind-and-enrich-company, find-and-enrich-contacts-at-company, find-and-enrich-list-of-contacts, add-contact-data-points, add-company-data-points, get-existing-search
Apolloapollo_people_match, apollo_contacts_create, apollo_contacts_search, apollo_organizations_enrich, apollo_organizations_search, apollo_emailer_campaigns_*

Common Mistakes

MistakeFix
Exceeding 100 requests/10s rate limitUse batch endpoints, add exponential backoff
Using Search API for >10k resultsSwitch to SQL warehouse for bulk analytics
Hardcoded property internal namesFetch property definitions first: GET /crm/v3/properties/{object}
Missing association API for object linksUse v4 associations: POST /crm/v4/associations/{from}/{to}/batch/read
SQL DATEDIFF in PostgresUse AGE() or EXTRACT(EPOCH FROM...) — see dialect notes
Not handling HubSpot's hs_object_idAlways include hs_object_id in property requests
Missing phone numbers after enrichmentUse Clay waterfall after Apollo: Apollo first (fast, free), then Clay MCP (find-and-enrich-contacts-at-companyadd-contact-data-pointsget-existing-search) for phone verification. Clay aggregates 50+ data providers for high match rates.
Scoring model trained on small datasetNeed 200+ closed deals minimum for reliable ML scores
Apollo-only enrichment missing dataClay MCP as fallback: Create taskId with find-and-enrich-company, then add-contact-data-points for Email/phone/work history, poll results with get-existing-search

Workflow Phases

Phase 1: Foundation

  1. Set up Private App with required scopes
  2. Confirm SQL replica access and schema
  3. Run schema discovery queries
  4. Validate data freshness (sync lag)

Phase 2: Analytics

  1. Build ICP validation queries (UC1)
  2. Create pipeline velocity dashboard (UC2, UC5)
  3. Set up competitive intelligence tracking (UC3)

Phase 3: Intelligence

  1. Train lead scoring model on historical deals
  2. Deploy scores to HubSpot via API
  3. Build enrichment pipelines (Clay → HubSpot)
  4. Set up automated alerts and webhooks
Reference: See reference/enrichment-pipelines.md for ML scoring and Clay integration. Reference: See reference/architecture.md for deployment patterns and cost estimates.

Emit Outcome Sidecar

As the final step, write to ~/.claude/skill-analytics/last-outcome-hubspot-revops.json:

{"ts":"[UTC ISO8601]","skill":"hubspot-revops","version":"1.0.0","variant":"default",
 "status":"[success|partial|error]","runtime_ms":[estimated ms from start],
 "metrics":{"queries_executed":[n],"reports_generated":[n],"insights_found":[n]},
 "error":null,"session_id":"[YYYY-MM-DD]"}

Use status "partial" if some stages failed but results were produced. Use "error" only if no output was generated.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.96%
按下载量换算110

Claude

29.64%
按下载量换算94

Cursor

18.83%
按下载量换算60

Gemini CLI

10.1%
按下载量换算32

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

未通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills