From juicebox-pack
Deploys Node.js Juicebox integrations to Google Cloud Run using Dockerfile and gcloud bash script with API key secrets. Triggers on 'deploy juicebox' phrases.
How this skill is triggered — by the user, by Claude, or both
Slash command
/juicebox-pack:juicebox-deploy-integrationThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```dockerfile
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY dist/ ./dist/
ENV JUICEBOX_API_KEY=""
CMD ["node", "dist/index.js"]
echo -n "jb_live_..." | gcloud secrets create juicebox-key --data-file=-
gcloud run deploy recruiter-svc --set-secrets JUICEBOX_API_KEY=juicebox-key:latest
See juicebox-webhooks-events.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin juicebox-packConfigures GitHub Actions workflows for Juicebox CI/CD tests and integration jobs in npm projects using JUICEBOX_API_KEY secret.
Guides secure deployments to Google Cloud Storage (static apps), Cloud Run, or GKE (dynamic/container apps) after analyzing app type via package.json and enforcing secret scanning.
Interactively sets up GCP Cloud Build + Cloud Run infrastructure. Provisions APIs, Artifact Registry, service accounts, IAM, secrets, and triggers with security best practices.