From juicebox-pack
Executes Juicebox production checklist: API keys, rate limiting, error handling, data encryption, GDPR compliance, health checks, and monitoring.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packThis skill is limited to using the following tools:
- [ ] Production API key in secret manager
Runs MindTickle production checklist: verifies credentials, rate limits, error handling, TypeScript health checks, monitoring, alerting, and rollback procedures.
Provides production checklist for OpenEvidence apps: pre-launch steps, TypeScript health check example, monitoring, alerting, and rollback procedures. Useful before SaaS/healthcare deployments.
Provides Clerk production readiness checklist with env validation, security checks, and TypeScript script for live keys, API connectivity, webhooks, and middleware.
Share bugs, ideas, or general feedback.
async function health() {
try {
await client.search({ query: 'test', limit: 1 });
return { status: 'healthy' };
} catch { return { status: 'degraded' }; }
}
See juicebox-upgrade-migration.