hubspot-sdk-patterns
Installation
SKILL.md
HubSpot SDK Patterns
Overview
Production-ready patterns for the @hubspot/api-client SDK covering typed wrappers, error handling, batch operations, and pagination.
Prerequisites
@hubspot/api-clientv13+ installed- TypeScript 5+ with strict mode
- Understanding of HubSpot CRM object model
Instructions
Step 1: Typed Client Wrapper
// src/hubspot/client.ts
import * as hubspot from '@hubspot/api-client';
Related skills