From juicebox-pack
Configures Juicebox CI/CD pipelines with GitHub Actions. Includes workflow examples for testing and integration tests. Triggered by 'juicebox ci' or 'juicebox pipeline'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/juicebox-pack:juicebox-ci-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
```yaml
name: Juicebox Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm test
integration:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci && npm run test:integration
env:
JUICEBOX_API_KEY: ${{ secrets.JUICEBOX_API_KEY }}
See juicebox-deploy-integration.
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin juicebox-pack2plugins reuse this skill
First indexed Jul 17, 2026
Configure Juicebox CI/CD. Trigger: "juicebox ci", "juicebox pipeline".
Configures CI/CD pipelines for Intercom integrations with GitHub Actions, including unit tests with mocked SDK, integration tests against a dev workspace, webhook signature tests, and encrypted secret management.
Configures CI/CD pipelines for Instantly.ai API v2 integrations using GitHub Actions, including mock-server testing, API key scope validation, and webhook deployment.