From lucidchart-pack
Optimizes Lucidchart API costs via caching, batching, tier selection, and usage monitoring. Provides TypeScript tracking snippet for call counts.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lucidchart-pack:lucidchart-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(`Lucidchart API calls today: ${totalCalls}`);
return fn();
}
See lucidchart-reference-architecture.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packProvides TypeScript caching for Lucidchart API performance tuning. Includes expiry-based cache Map and links to developer docs.
Optimizes Figma API usage to minimize costs by tracking request volumes, reducing calls with techniques like depth parameters, and selecting plan tiers based on limits.
Optimizes Attio API costs: audit usage with trackers, reduce requests via caching, select plans, monitor limits, and set budget alerts.