From mindtickle-pack
Optimizes MindTickle API costs via caching, batching, tier selection, usage tracking in TypeScript, and dashboard monitoring. For SaaS/sales integrations.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packThis skill is limited to using the following tools:
1. Cache frequent API calls
Provides TypeScript caching utility and MindTickle integration resources for performance optimization. Useful for tuning MindTickle apps or APIs.
Optimizes Clari API costs by selecting minimal export data types, reducing frequency, caching exports, and tracking usage. For integrations with high API volume.
Tunes OpenEvidence API costs with caching, batching, tier selection, dashboard monitoring, and TypeScript usage tracker. Trigger: 'openevidence cost tuning'.
Share bugs, ideas, or general feedback.
let totalCalls = 0;
async function tracked(fn: () => Promise<any>) {
totalCalls++;
console.log(`MindTickle API calls today: ${totalCalls}`);
return fn();
}
See mindtickle-reference-architecture.