Agent Skills: Juicebox Production Checklist

|

UncategorizedID: jeremylongshore/claude-code-plugins-plus-skills/juicebox-prod-checklist

Install this agent skill to your local

pnpm dlx add-skill https://github.com/jeremylongshore/claude-code-plugins-plus-skills/tree/HEAD/plugins/saas-packs/juicebox-pack/skills/juicebox-prod-checklist

Skill Files

Browse the full folder contents for juicebox-prod-checklist.

Download Skill

Loading file tree…

plugins/saas-packs/juicebox-pack/skills/juicebox-prod-checklist/SKILL.md

Skill Metadata

Name
juicebox-prod-checklist
Description
|

Juicebox Production Checklist

Checklist

  • [ ] Production API key in secret manager
  • [ ] Rate limiting per plan tier
  • [ ] Error handling (401, 403, 429, 500)
  • [ ] Candidate data encrypted at rest
  • [ ] GDPR/CCPA retention policy
  • [ ] Health check tests connectivity
  • [ ] Quota usage monitoring
  • [ ] Outreach templates compliance-reviewed

Health Check

async function health() {
  try {
    await client.search({ query: 'test', limit: 1 });
    return { status: 'healthy' };
  } catch { return { status: 'degraded' }; }
}

Resources

Next Steps

See juicebox-upgrade-migration.