From linktree-pack
Implements expiry-based caching in TypeScript to tune Linktree performance. Links to official docs and cost-tuning skill.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packThis skill is limited to using the following tools:
```typescript
Optimizes Linktree API costs via caching, batching, tier selection, and TypeScript usage tracking. Useful for high-volume Linktree integrations in SaaS/social apps.
Provides TypeScript caching utility and MindTickle integration resources for performance optimization. Useful for tuning MindTickle apps or APIs.
Optimizes Webflow Data API v2 performance using CDN-cached reads, response caching, bulk batching, pagination, and connection pooling for slow responses or high throughput.
Share bugs, ideas, or general feedback.
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 linktree-cost-tuning.