clari-ci-integration

Solid

Integrate Clari export pipeline testing and validation into CI/CD. Use when adding automated tests for Clari integrations, validating export schemas in CI, or testing pipeline reliability. Trigger with phrases like "clari CI", "clari github actions", "clari automated tests", "test clari pipeline".

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

Install

View on GitHub

Quality Score: 97/100

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

Skill Content

# Clari CI Integration ## Overview Add Clari export validation to CI: test API connectivity, validate export schemas, and run pipeline integration tests. ## Instructions ### GitHub Actions Workflow ```yaml name: Clari Pipeline Tests on: push: paths: ["src/clari/**", "tests/clari/**"] schedule: - cron: "0 6 * * 1" # Weekly Monday check jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.11" - run: pip install -r requirements.txt - name: Unit tests (mock data) run: pytest tests/ -v -k "not integration" - name: Integration test (real API) if: github.ref == 'refs/heads/main' env: CLARI_API_KEY: ${{ secrets.CLARI_API_KEY }} run: | python -c " from clari_client import ClariClient client = ClariClient() forecasts = client.list_forecasts() assert len(forecasts) > 0, 'No forecasts found' print(f'Connected: {len(forecasts)} forecasts available') " - name: Schema validation env: CLARI_API_KEY: ${{ secrets.CLARI_API_KEY }} run: | python scripts/validate_schema.py ``` ### Store Secrets ```bash gh secret set CLARI_API_KEY --body "your-api-token" ``` ## Resources - [GitHub Actions Documentation](https://docs.github.com/en/actions) ## Next Steps For deployment patterns, see `clari...

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

clay-ci-integration

Configure CI/CD pipelines for Clay integrations with automated testing and validation. Use when setting up automated tests for Clay webhook handlers, validating enrichment data quality in CI, or integrating Clay checks into your build process. Trigger with phrases like "clay CI", "clay GitHub Actions", "clay automated tests", "CI clay", "test clay integration".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

clari-deploy-integration

Deploy Clari export pipelines to production with Airflow, Cloud Functions, or Lambda. Use when scheduling automated exports, deploying to cloud platforms, or setting up serverless Clari sync. Trigger with phrases like "deploy clari", "clari airflow", "clari lambda", "clari cloud function", "clari scheduled export".

2,266 Updated today
jeremylongshore
AI & Automation Featured

klaviyo-ci-integration

Configure CI/CD pipelines for Klaviyo integrations with GitHub Actions. Use when setting up automated testing, configuring CI secrets, or integrating Klaviyo SDK tests into your build pipeline. Trigger with phrases like "klaviyo CI", "klaviyo GitHub Actions", "klaviyo automated tests", "CI klaviyo", "klaviyo pipeline".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-prod-checklist

Production readiness checklist for Clari API integrations. Use when launching a Clari data pipeline, validating export automation, or preparing for production forecast sync. Trigger with phrases like "clari production", "clari go-live", "clari checklist", "clari launch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-install-auth

Configure Clari API authentication with API key and set up export access. Use when connecting to the Clari API, generating API tokens, or configuring forecast data exports. Trigger with phrases like "install clari", "setup clari api", "clari auth", "clari api key", "configure clari".

2,266 Updated today
jeremylongshore