From openevidence-pack
Tunes OpenEvidence API costs with caching, batching, tier selection, dashboard monitoring, and TypeScript usage tracker. Trigger: 'openevidence cost tuning'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-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(`OpenEvidence API calls today: ${totalCalls}`);
return fn();
}
See openevidence-reference-architecture.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packProvides TypeScript in-memory caching function for OpenEvidence to reduce API calls and latency. Useful for optimizing repeated queries in healthcare apps.
Optimizes MindTickle API costs via caching, batching, tier selection, usage tracking in TypeScript, and dashboard monitoring. For SaaS/sales integrations.
Optimizes Clari API costs by selecting minimal export data types, reducing frequency, caching exports, and tracking usage. For integrations with high API volume.