clickup-cost-tuning
Optimize ClickUp API usage costs through plan selection, request reduction, caching, and usage monitoring. Trigger: "clickup cost", "clickup billing", "reduce clickup usage", "clickup pricing", "clickup plan comparison", "clickup API usage".
Best use case
clickup-cost-tuning is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Optimize ClickUp API usage costs through plan selection, request reduction, caching, and usage monitoring. Trigger: "clickup cost", "clickup billing", "reduce clickup usage", "clickup pricing", "clickup plan comparison", "clickup API usage".
Teams using clickup-cost-tuning 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/clickup-cost-tuning/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How clickup-cost-tuning Compares
| Feature / Agent | clickup-cost-tuning | 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?
Optimize ClickUp API usage costs through plan selection, request reduction, caching, and usage monitoring. Trigger: "clickup cost", "clickup billing", "reduce clickup usage", "clickup pricing", "clickup plan comparison", "clickup API usage".
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
# ClickUp Cost Tuning
## Overview
ClickUp charges per-seat, not per-API-call. However, rate limits constrain throughput per plan tier. Optimizing API usage means reducing request count to stay within rate limits and avoid needing plan upgrades.
## ClickUp Pricing (Per Member/Month)
| Plan | Price | Rate Limit | Key API Features |
|------|-------|-----------|------------------|
| Free Forever | $0 | 100 req/min | Full API access, 100 uses of automations |
| Unlimited | $7/member | 100 req/min | Unlimited storage, integrations |
| Business | $12/member | 100 req/min | Custom fields, time tracking, goals |
| Business Plus | $19/member | 1,000 req/min | Custom role creation, admin training |
| Enterprise | Custom | 10,000 req/min | SSO/SAML, advanced permissions, dedicated support |
## Request Reduction Strategies
### 1. Cache Workspace Structure
Spaces, folders, and lists change rarely. Cache them aggressively.
```typescript
import { LRUCache } from 'lru-cache';
const structureCache = new LRUCache<string, any>({
max: 500,
ttl: 300000, // 5 minutes for hierarchy data
});
async function getCachedSpaces(teamId: string) {
const key = `spaces:${teamId}`;
let spaces = structureCache.get(key);
if (!spaces) {
const data = await clickupRequest(`/team/${teamId}/space?archived=false`);
spaces = data.spaces;
structureCache.set(key, spaces);
}
return spaces;
}
```
### 2. Use Pagination Efficiently
Get Tasks returns max 100 per page. Fetch only what you need.
```typescript
// Bad: fetch all pages when you only need recent tasks
// Good: use filters to minimize pages
async function getRecentTasks(listId: string, limit = 25) {
return clickupRequest(`/list/${listId}/task?${new URLSearchParams({
page: '0',
order_by: 'updated',
reverse: 'true',
subtasks: 'true',
include_closed: 'false',
})}`);
}
```
### 3. Batch with Custom Fields
Set custom fields during task creation instead of separate calls.
```typescript
// Bad: 3 API calls (create + 2 custom field updates)
const task = await createTask(listId, { name: 'Task' });
await setCustomField(task.id, field1Id, value1);
await setCustomField(task.id, field2Id, value2);
// Good: 1 API call (custom fields in create body)
await createTask(listId, {
name: 'Task',
custom_fields: [
{ id: field1Id, value: value1 },
{ id: field2Id, value: value2 },
],
});
```
### 4. Use Webhooks Instead of Polling
```typescript
// Bad: poll every 30 seconds (2 req/min wasted)
setInterval(() => checkForUpdates(), 30000);
// Good: register webhook, process events on-demand (0 polling requests)
await clickupRequest(`/team/${teamId}/webhook`, {
method: 'POST',
body: JSON.stringify({
endpoint: 'https://myapp.com/webhooks/clickup',
events: ['taskUpdated', 'taskCreated'],
}),
});
```
## Usage Monitoring
```typescript
class ClickUpUsageTracker {
private requestLog: Array<{ timestamp: number; endpoint: string }> = [];
track(endpoint: string): void {
this.requestLog.push({ timestamp: Date.now(), endpoint });
// Keep only last hour
const cutoff = Date.now() - 3600000;
this.requestLog = this.requestLog.filter(r => r.timestamp > cutoff);
}
getRequestsPerMinute(): number {
const oneMinAgo = Date.now() - 60000;
return this.requestLog.filter(r => r.timestamp > oneMinAgo).length;
}
getTopEndpoints(n = 5): Array<{ endpoint: string; count: number }> {
const counts = new Map<string, number>();
for (const r of this.requestLog) {
counts.set(r.endpoint, (counts.get(r.endpoint) ?? 0) + 1);
}
return [...counts.entries()]
.sort((a, b) => b[1] - a[1])
.slice(0, n)
.map(([endpoint, count]) => ({ endpoint, count }));
}
needsUpgrade(): boolean {
return this.getRequestsPerMinute() > 80; // 80% of Free tier limit
}
}
```
## Cost Decision Matrix
| Monthly Requests | Recommended Plan | Rationale |
|-----------------|-----------------|-----------|
| < 144,000 | Free Forever | 100/min * 60min * 24h = 144K/day max |
| 100-1000 req/min sustained | Business Plus | 10x rate limit increase |
| > 1000 req/min sustained | Enterprise | 10,000 req/min + dedicated support |
## Error Handling
| Issue | Cause | Solution |
|-------|-------|----------|
| Constant 429 errors | Hit rate ceiling | Implement queuing or upgrade |
| Cache stale data | TTL too long | Invalidate via webhooks |
| Redundant API calls | No deduplication | Use DataLoader batching |
| Polling overhead | No webhook setup | Switch to event-driven |
## Resources
- [ClickUp Pricing](https://clickup.com/pricing)
- [ClickUp Rate Limits](https://developer.clickup.com/docs/rate-limits)
## Next Steps
For architecture patterns, see `clickup-reference-architecture`.Related Skills
workhuman-performance-tuning
Workhuman performance tuning for employee recognition and rewards API. Use when integrating Workhuman Social Recognition, or building recognition workflows with HRIS systems. Trigger: "workhuman performance tuning".
workhuman-cost-tuning
Workhuman cost tuning for employee recognition and rewards API. Use when integrating Workhuman Social Recognition, or building recognition workflows with HRIS systems. Trigger: "workhuman cost tuning".
wispr-performance-tuning
Wispr Flow performance tuning for voice-to-text API integration. Use when integrating Wispr Flow dictation, WebSocket streaming, or building voice-powered applications. Trigger: "wispr performance tuning".
wispr-cost-tuning
Wispr Flow cost tuning for voice-to-text API integration. Use when integrating Wispr Flow dictation, WebSocket streaming, or building voice-powered applications. Trigger: "wispr cost tuning".
windsurf-performance-tuning
Optimize Windsurf IDE performance: indexing speed, Cascade responsiveness, and memory usage. Use when Windsurf is slow, indexing takes too long, Cascade times out, or the IDE uses too much memory. Trigger with phrases like "windsurf slow", "windsurf performance", "optimize windsurf", "windsurf memory", "cascade slow", "indexing slow".
windsurf-cost-tuning
Optimize Windsurf licensing costs through seat management, tier selection, and credit monitoring. Use when analyzing Windsurf billing, reducing per-seat costs, or implementing usage monitoring and budget controls. Trigger with phrases like "windsurf cost", "windsurf billing", "reduce windsurf costs", "windsurf pricing", "windsurf budget".
webflow-performance-tuning
Optimize Webflow API performance with response caching, bulk endpoint batching, CDN-cached live item reads, pagination optimization, and connection pooling. Use when experiencing slow API responses or optimizing request throughput. Trigger with phrases like "webflow performance", "optimize webflow", "webflow latency", "webflow caching", "webflow slow", "webflow batch".
webflow-cost-tuning
Optimize Webflow costs through plan selection, CDN read optimization, bulk endpoint usage, and API usage monitoring with budget alerts. Use when analyzing Webflow billing, reducing API costs, or implementing usage monitoring for Webflow integrations. Trigger with phrases like "webflow cost", "webflow billing", "reduce webflow costs", "webflow pricing", "webflow budget".
vercel-performance-tuning
Optimize Vercel deployment performance with caching, bundle optimization, and cold start reduction. Use when experiencing slow page loads, optimizing Core Web Vitals, or reducing serverless function cold start times. Trigger with phrases like "vercel performance", "optimize vercel", "vercel latency", "vercel caching", "vercel slow", "vercel cold start".
vercel-cost-tuning
Optimize Vercel costs through plan selection, function efficiency, and usage monitoring. Use when analyzing Vercel billing, reducing function execution costs, or implementing spend management and budget alerts. Trigger with phrases like "vercel cost", "vercel billing", "reduce vercel costs", "vercel pricing", "vercel expensive", "vercel budget".
veeva-performance-tuning
Veeva Vault performance tuning for REST API and clinical operations. Use when working with Veeva Vault document management and CRM. Trigger: "veeva performance tuning".
veeva-cost-tuning
Veeva Vault cost tuning for REST API and clinical operations. Use when working with Veeva Vault document management and CRM. Trigger: "veeva cost tuning".