From hootsuite-pack
Configures Hootsuite CI/CD integration with GitHub Actions, including automated testing and API connection setup. Triggered by phrases like 'hootsuite CI'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hootsuite-pack:hootsuite-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: Hootsuite Integration
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: { node-version: '20', cache: 'npm' }
- run: npm ci
- run: npm test # Mocked tests, no API access needed
integration:
if: github.ref == 'refs/heads/main'
needs: test
runs-on: ubuntu-latest
env:
HOOTSUITE_CLIENT_ID: ${{ secrets.HOOTSUITE_CLIENT_ID }}
HOOTSUITE_CLIENT_SECRET: ${{ secrets.HOOTSUITE_CLIENT_SECRET }}
HOOTSUITE_REFRESH_TOKEN: ${{ secrets.HOOTSUITE_REFRESH_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: { node-version: '20', cache: 'npm' }
- run: npm ci
- name: Refresh token and test API
run: node scripts/test-api-connection.js
gh secret set HOOTSUITE_CLIENT_ID --body "client_id"
gh secret set HOOTSUITE_CLIENT_SECRET --body "client_secret"
gh secret set HOOTSUITE_REFRESH_TOKEN --body "refresh_token"
For deployment, see hootsuite-deploy-integration.
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin hootsuite-pack2plugins reuse this skill
First indexed Jul 17, 2026
Sets up CI/CD for Hootsuite social media management with GitHub Actions, including unit tests with mocked API responses and live integration tests on merge to main.
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.