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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-observabilityThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
| Metric | Alert |
| 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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packProvides structured incident runbook for OpenEvidence SaaS, with severity levels, triage steps like status checks and curl tests, mitigation strategies, and resources for API downtime.
Instruments Claude API calls with Python structured logging and Prometheus metrics to track latency, cost, errors, token usage, and rate limits.
Adds Prometheus metrics, JSON logging, OpenTelemetry tracing, health checks, and alerts to JavaScript Evernote API integrations.