juicebox-multi-env-setup

Featured

Configure Juicebox multi-environment. Trigger: "juicebox environments", "juicebox staging".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Juicebox Multi-Environment Setup ## Overview Juicebox AI analysis requires environment separation to enforce workspace isolation, control data access, and prevent accidental exports of sensitive datasets. Development works with sample datasets and strict result limits for fast iteration, staging connects to full production data but disables export functionality, and production enables all features with full export capabilities. Each environment uses isolated workspaces so analysis experiments in dev never affect production workspace state or user-facing reports. ## Environment Configuration ```typescript const juiceboxConfig = (env: string) => ({ development: { apiKey: process.env.JB_KEY_DEV!, baseUrl: "https://api.dev.juicebox.work/v1", workspaceId: process.env.JB_WORKSPACE_DEV!, resultLimit: 5, exportEnabled: false, }, staging: { apiKey: process.env.JB_KEY_STG!, baseUrl: "https://api.staging.juicebox.work/v1", workspaceId: process.env.JB_WORKSPACE_STG!, resultLimit: 20, exportEnabled: false, }, production: { apiKey: process.env.JB_KEY_PROD!, baseUrl: "https://api.juicebox.work/v1", workspaceId: process.env.JB_WORKSPACE_PROD!, resultLimit: 50, exportEnabled: true, }, }[env]); ``` ## Environment Files ```bash # Per-env files: .env.development, .env.staging, .env.production JB_KEY_{DEV|STG|PROD}=<api-key> JB_WORKSPACE_{DEV|STG|PROD}=<workspace-id> JB_BASE_URL=https://api.{dev.|staging.|""}juicebox.work/v1 JB_EXPORT_ENABLED={false|fal...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

openevidence-multi-env-setup

Multi Env Setup for OpenEvidence. Trigger: "openevidence multi env setup".

2,266 Updated today
jeremylongshore
AI & Automation Featured

juicebox-deploy-integration

Deploy Juicebox integrations. Trigger: "deploy juicebox", "juicebox production deploy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

evernote-multi-env-setup

Configure multi-environment setup for Evernote integrations. Use when setting up dev, staging, and production environments, or managing environment-specific configurations. Trigger with phrases like "evernote environments", "evernote staging", "evernote dev setup", "multiple environments evernote".

2,266 Updated today
jeremylongshore
AI & Automation Featured

databricks-multi-env-setup

Configure Databricks across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment secrets, or implementing environment-specific Databricks configurations. Trigger with phrases like "databricks environments", "databricks staging", "databricks dev prod", "databricks environment setup", "databricks config by env".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-multi-env-setup

Configure Klaviyo across development, staging, and production environments. Use when setting up multi-environment deployments, configuring per-environment API keys, or implementing environment-specific Klaviyo configurations. Trigger with phrases like "klaviyo environments", "klaviyo staging", "klaviyo dev prod", "klaviyo environment setup", "klaviyo config by env".

2,266 Updated today
jeremylongshore