Agent Skills: MindTickle Performance Tuning

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/mindtickle-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/mindtickle-pack/skills/mindtickle-performance-tuning

Skill Files

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

Download Skill

Loading file tree…

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

Skill Metadata

Name
mindtickle-performance-tuning
Description
|

MindTickle 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 mindtickle-cost-tuning.