Agent Skills: Lucidchart Performance Tuning

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/lucidchart-performance-tuning

Install this agent skill to your local

pnpm dlx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/HEAD/plugins/saas-packs/lucidchart-pack/skills/lucidchart-performance-tuning

Skill Files

Browse the full folder contents for lucidchart-performance-tuning.

Download Skill

Loading file tree…

plugins/saas-packs/lucidchart-pack/skills/lucidchart-performance-tuning/SKILL.md

Skill Metadata

Name
lucidchart-performance-tuning
Description
|

Lucidchart Performance Tuning

Caching

const cache = new Map();
async function cached(key: string, fn: () => Promise<any>) {
  const c = cache.get(key);
  if (c?.expiry > Date.now()) return c.data;
  const data = await fn();
  cache.set(key, { data, expiry: Date.now() + 300_000 });
  return data;
}

Resources

Next Steps

See lucidchart-cost-tuning.