hubspot-sdk-patterns
Apply production-ready @hubspot/api-client SDK patterns for TypeScript. Use when implementing HubSpot integrations, building typed wrappers, or establishing team standards for HubSpot CRM operations. Trigger with phrases like "hubspot SDK patterns", "hubspot best practices", "hubspot typed client", "hubspot api-client wrapper", "idiomatic hubspot".
Best use case
hubspot-sdk-patterns is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Apply production-ready @hubspot/api-client SDK patterns for TypeScript. Use when implementing HubSpot integrations, building typed wrappers, or establishing team standards for HubSpot CRM operations. Trigger with phrases like "hubspot SDK patterns", "hubspot best practices", "hubspot typed client", "hubspot api-client wrapper", "idiomatic hubspot".
Teams using hubspot-sdk-patterns should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/hubspot-sdk-patterns/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How hubspot-sdk-patterns Compares
| Feature / Agent | hubspot-sdk-patterns | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Apply production-ready @hubspot/api-client SDK patterns for TypeScript. Use when implementing HubSpot integrations, building typed wrappers, or establishing team standards for HubSpot CRM operations. Trigger with phrases like "hubspot SDK patterns", "hubspot best practices", "hubspot typed client", "hubspot api-client wrapper", "idiomatic hubspot".
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Coding
Browse AI agent skills for coding, debugging, testing, refactoring, code review, and developer workflows across Claude, Cursor, and Codex.
Best AI Skills for Claude
Explore the best AI skills for Claude and Claude Code across coding, research, workflow automation, documentation, and agent operations.
ChatGPT vs Claude for Agent Skills
Compare ChatGPT and Claude for AI agent skills across coding, writing, research, and reusable workflow execution.
SKILL.md Source
# 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-client` v13+ installed
- TypeScript 5+ with strict mode
- Understanding of HubSpot CRM object model
## Instructions
### Step 1: Typed Client Wrapper
```typescript
// src/hubspot/client.ts
import * as hubspot from '@hubspot/api-client';
import type {
SimplePublicObjectInputForCreate,
SimplePublicObject,
PublicObjectSearchRequest,
} from '@hubspot/api-client/lib/codegen/crm/contacts';
interface HubSpotConfig {
accessToken: string;
retries?: number;
}
let instance: hubspot.Client | null = null;
export function getClient(config?: HubSpotConfig): hubspot.Client {
if (!instance) {
instance = new hubspot.Client({
accessToken: config?.accessToken || process.env.HUBSPOT_ACCESS_TOKEN!,
numberOfApiCallRetries: config?.retries ?? 3,
});
}
return instance;
}
```
### Step 2: Error Classification
```typescript
// src/hubspot/errors.ts
export class HubSpotApiError extends Error {
constructor(
message: string,
public readonly statusCode: number,
public readonly category: string,
public readonly correlationId: string,
public readonly retryable: boolean
) {
super(message);
this.name = 'HubSpotApiError';
}
}
export function classifyError(error: any): HubSpotApiError {
const status = error?.code || error?.statusCode || error?.response?.status || 500;
const body = error?.body || error?.response?.body || {};
const correlationId = body.correlationId || 'unknown';
const retryable = [429, 500, 502, 503, 504].includes(status);
const categoryMap: Record<number, string> = {
400: 'VALIDATION_ERROR',
401: 'AUTHENTICATION_ERROR',
403: 'AUTHORIZATION_ERROR',
404: 'NOT_FOUND',
409: 'CONFLICT',
429: 'RATE_LIMIT',
500: 'INTERNAL_ERROR',
};
return new HubSpotApiError(
body.message || error.message || 'Unknown HubSpot error',
status,
categoryMap[status] || 'UNKNOWN',
correlationId,
retryable
);
}
// Usage wrapper
export async function safeCall<T>(operation: () => Promise<T>): Promise<T> {
try {
return await operation();
} catch (error) {
throw classifyError(error);
}
}
```
### Step 3: Typed CRM Operations
```typescript
// src/hubspot/contacts.ts
import * as hubspot from '@hubspot/api-client';
import type { SimplePublicObject } from '@hubspot/api-client/lib/codegen/crm/contacts';
import { getClient } from './client';
import { safeCall } from './errors';
// Define your contact properties as a type
interface ContactProperties {
firstname?: string;
lastname?: string;
email: string;
phone?: string;
company?: string;
lifecyclestage?: 'subscriber' | 'lead' | 'marketingqualifiedlead'
| 'salesqualifiedlead' | 'opportunity' | 'customer' | 'evangelist';
}
const CONTACT_PROPS = ['firstname', 'lastname', 'email', 'phone', 'company', 'lifecyclestage'];
export async function createContact(props: ContactProperties): Promise<SimplePublicObject> {
return safeCall(() =>
getClient().crm.contacts.basicApi.create({
properties: props as Record<string, string>,
associations: [],
})
);
}
export async function getContact(id: string): Promise<SimplePublicObject> {
return safeCall(() =>
getClient().crm.contacts.basicApi.getById(id, CONTACT_PROPS)
);
}
export async function updateContact(
id: string,
props: Partial<ContactProperties>
): Promise<SimplePublicObject> {
return safeCall(() =>
getClient().crm.contacts.basicApi.update(id, {
properties: props as Record<string, string>,
})
);
}
export async function findContactByEmail(email: string): Promise<SimplePublicObject | null> {
const result = await safeCall(() =>
getClient().crm.contacts.searchApi.doSearch({
filterGroups: [{
filters: [{ propertyName: 'email', operator: 'EQ', value: email }],
}],
properties: CONTACT_PROPS,
limit: 1,
after: 0,
sorts: [],
})
);
return result.results[0] || null;
}
```
### Step 4: Batch Operations
```typescript
// src/hubspot/batch.ts
import { getClient } from './client';
import { safeCall } from './errors';
// Batch create contacts (max 100 per batch)
export async function batchCreateContacts(
contacts: Array<{ properties: Record<string, string> }>
) {
// POST /crm/v3/objects/contacts/batch/create
return safeCall(() =>
getClient().crm.contacts.batchApi.create({
inputs: contacts.map(c => ({ properties: c.properties, associations: [] })),
})
);
}
// Batch read contacts by ID or unique property
export async function batchReadContacts(ids: string[], properties: string[]) {
// POST /crm/v3/objects/contacts/batch/read
return safeCall(() =>
getClient().crm.contacts.batchApi.read({
inputs: ids.map(id => ({ id })),
properties,
propertiesWithHistory: [],
})
);
}
// Batch upsert: create or update in one call
export async function batchUpsertContacts(
contacts: Array<{ properties: Record<string, string> }>,
idProperty = 'email'
) {
// POST /crm/v3/objects/contacts/batch/upsert
const client = getClient();
return safeCall(() =>
client.apiRequest({
method: 'POST',
path: '/crm/v3/objects/contacts/batch/upsert',
body: {
inputs: contacts.map(c => ({
properties: c.properties,
idProperty,
id: c.properties[idProperty],
})),
},
})
);
}
// Chunk large batches into 100-record groups
export async function batchCreateChunked(
contacts: Array<{ properties: Record<string, string> }>,
chunkSize = 100
) {
const results = [];
for (let i = 0; i < contacts.length; i += chunkSize) {
const chunk = contacts.slice(i, i + chunkSize);
const result = await batchCreateContacts(chunk);
results.push(result);
}
return results;
}
```
### Step 5: Pagination Helper
```typescript
// src/hubspot/pagination.ts
import type { SimplePublicObject } from '@hubspot/api-client/lib/codegen/crm/contacts';
import { getClient } from './client';
export async function* getAllContacts(
properties: string[],
limit = 100
): AsyncGenerator<SimplePublicObject> {
let after: string | undefined;
do {
const page = await getClient().crm.contacts.basicApi.getPage(
limit,
after,
properties
);
for (const contact of page.results) {
yield contact;
}
after = page.paging?.next?.after;
} while (after);
}
// Usage
async function exportAllContacts() {
const allContacts: SimplePublicObject[] = [];
for await (const contact of getAllContacts(['firstname', 'lastname', 'email'])) {
allContacts.push(contact);
}
console.log(`Exported ${allContacts.length} contacts`);
}
```
## Output
- Type-safe client singleton with automatic retries
- Error classification with retryable detection
- Typed CRUD operations for contacts
- Batch create/read/upsert with chunking
- Async generator for paginated results
## Error Handling
| Pattern | Use Case | Benefit |
|---------|----------|---------|
| `safeCall` wrapper | All API calls | Classifies errors, adds correlation IDs |
| `numberOfApiCallRetries` | Transient failures | Built-in SDK retry for 429/5xx |
| Batch chunking | Large datasets | Stays within 100-record batch limit |
| Pagination generator | Full exports | Memory-efficient streaming |
## Examples
### Factory Pattern (Multi-Portal)
```typescript
const clients = new Map<string, hubspot.Client>();
export function getClientForPortal(portalId: string, token: string): hubspot.Client {
if (!clients.has(portalId)) {
clients.set(portalId, new hubspot.Client({ accessToken: token }));
}
return clients.get(portalId)!;
}
```
## Resources
- [@hubspot/api-client API Reference](https://github.hubspot.com/hubspot-api-nodejs/)
- [CRM Objects API Guide](https://developers.hubspot.com/docs/guides/api/crm/objects/contacts)
- [Batch Operations Guide](https://developers.hubspot.com/docs/guides/api/crm/understanding-the-crm)
## Next Steps
Apply patterns in `hubspot-core-workflow-a` for real-world CRM operations.Related Skills
workhuman-sdk-patterns
Workhuman sdk patterns for employee recognition and rewards API. Use when integrating Workhuman Social Recognition, or building recognition workflows with HRIS systems. Trigger: "workhuman sdk patterns".
wispr-sdk-patterns
Wispr Flow sdk patterns for voice-to-text API integration. Use when integrating Wispr Flow dictation, WebSocket streaming, or building voice-powered applications. Trigger: "wispr sdk patterns".
windsurf-sdk-patterns
Apply production-ready Windsurf workspace configuration and Cascade interaction patterns. Use when configuring .windsurfrules, workspace rules, MCP servers, or establishing team coding standards for Windsurf AI. Trigger with phrases like "windsurf patterns", "windsurf best practices", "windsurf config patterns", "windsurfrules", "windsurf workspace".
windsurf-reliability-patterns
Implement reliable Cascade workflows with checkpoints, rollback, and incremental editing. Use when building fault-tolerant AI coding workflows, preventing Cascade from breaking builds, or establishing safe practices for multi-file AI edits. Trigger with phrases like "windsurf reliability", "cascade safety", "windsurf rollback", "cascade checkpoint", "safe cascade workflow".
webflow-sdk-patterns
Apply production-ready Webflow SDK patterns — singleton client, typed error handling, pagination helpers, and raw response access for the webflow-api package. Use when implementing Webflow integrations, refactoring SDK usage, or establishing team coding standards. Trigger with phrases like "webflow SDK patterns", "webflow best practices", "webflow code patterns", "idiomatic webflow", "webflow typescript".
vercel-sdk-patterns
Production-ready Vercel REST API patterns with typed fetch wrappers and error handling. Use when integrating with the Vercel API programmatically, building deployment tools, or establishing team coding standards for Vercel API calls. Trigger with phrases like "vercel SDK patterns", "vercel API wrapper", "vercel REST API client", "vercel best practices", "idiomatic vercel API".
vercel-reliability-patterns
Implement reliability patterns for Vercel deployments including circuit breakers, retry logic, and graceful degradation. Use when building fault-tolerant serverless functions, implementing retry strategies, or adding resilience to production Vercel services. Trigger with phrases like "vercel reliability", "vercel circuit breaker", "vercel resilience", "vercel fallback", "vercel graceful degradation".
veeva-sdk-patterns
Veeva Vault sdk patterns for REST API and clinical operations. Use when working with Veeva Vault document management and CRM. Trigger: "veeva sdk patterns".
vastai-sdk-patterns
Apply production-ready Vast.ai SDK patterns for Python and REST API. Use when implementing Vast.ai integrations, refactoring SDK usage, or establishing coding standards for GPU cloud operations. Trigger with phrases like "vastai SDK patterns", "vastai best practices", "vastai code patterns", "idiomatic vastai".
twinmind-sdk-patterns
Apply production-ready TwinMind SDK patterns for TypeScript and Python. Use when implementing TwinMind integrations, refactoring API usage, or establishing team coding standards for meeting AI integration. Trigger with phrases like "twinmind SDK patterns", "twinmind best practices", "twinmind code patterns", "idiomatic twinmind".
together-sdk-patterns
Together AI sdk patterns for inference, fine-tuning, and model deployment. Use when working with Together AI's OpenAI-compatible API. Trigger: "together sdk patterns".
techsmith-sdk-patterns
TechSmith sdk patterns for Snagit COM API and Camtasia automation. Use when working with TechSmith screen capture and video editing automation. Trigger: "techsmith sdk patterns".