clickup-sdk-patterns

Installation
SKILL.md

ClickUp SDK Patterns

Overview

ClickUp has no official SDK. Build a typed REST client wrapper around https://api.clickup.com/api/v2/. These patterns provide singleton clients, typed responses, error boundaries, and multi-tenant support.

Typed Client Wrapper

// src/clickup/client.ts
const CLICKUP_BASE = 'https://api.clickup.com/api/v2';

interface ClickUpClientConfig {
  token: string;
  timeout?: number;
  onRateLimit?: (waitMs: number) => void;
}
Installs
2
GitHub Stars
2.4K
First Seen
Mar 30, 2026
clickup-sdk-patterns — jeremylongshore/claude-code-plugins-plus-skills