From openevidence-pack
Defines observability metrics for OpenEvidence API (latency p99, errors, quota), TypeScript logging wrapper, docs link, and incident runbook reference. Useful for monitoring integrations.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packThis skill is limited to using the following tools:
| Metric | Alert |
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.
| Metric | Alert |
|---|---|
| API latency p99 | > 5s |
| Error rate | > 5% |
| Daily API calls | > 80% quota |
async function tracked(fn: () => Promise<any>) {
const start = Date.now();
const result = await fn();
logger.info({ event: 'openevidence.api', ms: Date.now() - start });
return result;
}
See openevidence-incident-runbook.