From mindtickle-pack
Provides TypeScript caching utility and MindTickle integration resources for performance optimization. Useful for tuning MindTickle apps or APIs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mindtickle-pack:mindtickle-performance-tuningThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```typescript
const cache = new Map();
async function cached(key: string, fn: () => Promise<any>) {
const c = cache.get(key);
if (c?.expiry > Date.now()) return c.data;
const data = await fn();
cache.set(key, { data, expiry: Date.now() + 300_000 });
return data;
}
See mindtickle-cost-tuning.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packOptimizes MindTickle API costs via caching, batching, tier selection, usage tracking in TypeScript, and dashboard monitoring. For SaaS/sales integrations.
Optimizes SalesLoft API performance with caching, incremental syncs, pagination strategies, and connection pooling. For slow responses, bulk operations, or cadence throughput.
Optimizes HubSpot CRM API performance using batch reads, minimal property requests, and caching to handle slow responses and high throughput.