From linktree-pack
Optimizes Linktree API costs via caching, batching, tier selection, and TypeScript usage tracking. Useful for high-volume Linktree integrations in SaaS/social apps.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packThis skill is limited to using the following tools:
1. Cache frequent API calls
Implements expiry-based caching in TypeScript to tune Linktree performance. Links to official docs and cost-tuning skill.
Optimizes MindTickle API costs via caching, batching, tier selection, usage tracking in TypeScript, and dashboard monitoring. For SaaS/sales integrations.
Optimizes Lucidchart API costs via caching, batching, tier selection, and usage monitoring. Provides TypeScript tracking snippet for call counts.
Share bugs, ideas, or general feedback.
let totalCalls = 0;
async function tracked(fn: () => Promise<any>) {
totalCalls++;
console.log(`Linktree API calls today: ${totalCalls}`);
return fn();
}
See linktree-reference-architecture.