From lucidchart-pack
Optimizes Lucidchart API costs via caching, batching, tier selection, and usage monitoring. Provides TypeScript tracking snippet for call counts.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lucidchart-packThis skill is limited to using the following tools:
1. Cache frequent API calls
Provides 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.
Share bugs, ideas, or general feedback.
let totalCalls = 0;
async function tracked(fn: () => Promise<any>) {
totalCalls++;
console.log(`Lucidchart API calls today: ${totalCalls}`);
return fn();
}
See lucidchart-reference-architecture.