From openevidence-pack
Provides TypeScript in-memory caching function for OpenEvidence to reduce API calls and latency. Useful for optimizing repeated queries in healthcare apps.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packThis skill is limited to using the following tools:
```typescript
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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;
}
See openevidence-cost-tuning.