From openevidence-pack
Provides production checklist for OpenEvidence apps: pre-launch steps, TypeScript health check example, monitoring, alerting, and rollback procedures. Useful before SaaS/healthcare deployments.
How this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-prod-checklistThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [ ] Production credentials in secret manager
async function health() {
try { /* test OpenEvidence API call */ return { status: 'healthy' }; }
catch { return { status: 'degraded' }; }
}
See openevidence-upgrade-migration.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packRuns MindTickle production checklist: verifies credentials, rate limits, error handling, TypeScript health checks, monitoring, alerting, and rollback procedures.
Executes Documenso production deployment checklist for integrations: auth/secrets, errors, performance, monitoring, webhooks, compliance, self-hosted PostgreSQL/K8s.
Provides OpenEvidence security basics including API key .env setup, checklists for rotation, auditing, and per-environment keys. Useful for secure SaaS API integrations.