From juicebox-pack
Executes Juicebox production checklist: API keys, rate limiting, error handling, data encryption, GDPR compliance, health checks, and monitoring.
How this skill is triggered — by the user, by Claude, or both
Slash command
/juicebox-pack:juicebox-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 API key in secret manager
async function health() {
try {
await client.search({ query: 'test', limit: 1 });
return { status: 'healthy' };
} catch { return { status: 'degraded' }; }
}
See juicebox-upgrade-migration.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packRuns 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.