clari-deploy-integration

Featured

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".

DevOps & Infrastructure 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

# Clari Deploy Integration ## Overview Deploy Clari export pipelines to production environments: Airflow DAGs, AWS Lambda, or Google Cloud Functions for scheduled, serverless execution. ## Instructions ### Airflow DAG ```python # dags/clari_export_dag.py from airflow import DAG from airflow.operators.python import PythonOperator from airflow.models import Variable from datetime import datetime, timedelta def export_clari_forecast(**context): from clari_client import ClariClient, ClariConfig client = ClariClient(ClariConfig( api_key=Variable.get("clari_api_key"), )) period = context["params"].get("period", "2026_Q1") data = client.export_and_download("company_forecast", period) entries = data.get("entries", []) context["ti"].xcom_push(key="entry_count", value=len(entries)) # Load to warehouse here dag = DAG( "clari_daily_export", schedule_interval="0 6 * * *", start_date=datetime(2026, 1, 1), catchup=False, default_args={"retries": 2, "retry_delay": timedelta(minutes=5)}, ) export_task = PythonOperator( task_id="export_forecast", python_callable=export_clari_forecast, dag=dag, ) ``` ### AWS Lambda ```python # lambda_handler.py import json import boto3 from clari_client import ClariClient, ClariConfig def handler(event, context): ssm = boto3.client("ssm") api_key = ssm.get_parameter( Name="/clari/api-key", WithDecryption=True )["Parameter"]["Value"] client = ClariClien...

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 Solid

clari-ci-integration

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".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-core-workflow-a

Build a Clari forecast export pipeline to your data warehouse. Use when exporting forecast calls, quota data, and CRM totals from Clari to Snowflake, BigQuery, or a local database. Trigger with phrases like "clari forecast export", "clari data pipeline", "clari to snowflake", "clari to bigquery", "export clari data".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-hello-world

Export your first Clari forecast and pipeline snapshot. Use when testing Clari API connectivity, pulling forecast data, or learning the export API structure. Trigger with phrases like "clari hello world", "clari first export", "clari test api", "clari forecast export".

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
AI & Automation Featured

clari-core-workflow-b

Build Clari revenue analytics: pipeline coverage, forecast accuracy, and rep performance dashboards from exported data. Use when analyzing forecast accuracy, building attainment reports, or creating executive revenue dashboards. Trigger with phrases like "clari analytics", "clari dashboard", "clari forecast accuracy", "clari pipeline coverage".

2,266 Updated today
jeremylongshore