From mindtickle-pack
Optimizes MindTickle API costs via caching, batching, tier selection, usage tracking in TypeScript, and dashboard monitoring. For SaaS/sales integrations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mindtickle-pack:mindtickle-cost-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
1. Cache frequent API calls
let totalCalls = 0;
async function tracked(fn: () => Promise<any>) {
totalCalls++;
console.log(`MindTickle API calls today: ${totalCalls}`);
return fn();
}
See mindtickle-reference-architecture.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packProvides 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'.