clari-core-workflow-a

Featured

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

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

# Clari Core Workflow: Forecast Export Pipeline ## Overview Primary workflow: build an automated pipeline that exports forecast submissions, quota, adjustments, and CRM data from Clari to your data warehouse. Supports Snowflake, BigQuery, and PostgreSQL as targets. ## Prerequisites - Completed `clari-install-auth` and `clari-sdk-patterns` setup - Target database or data warehouse with write access - Python 3.10+ with `requests` and your DB driver ## Instructions ### Step 1: Define Export Configuration ```python # config.py from dataclasses import dataclass @dataclass class ExportConfig: forecast_name: str # From Clari forecast list time_periods: list[str] # e.g., ["2026_Q1", "2025_Q4"] export_types: list[str] = None currency: str = "USD" include_historical: bool = True def __post_init__(self): if self.export_types is None: self.export_types = [ "forecast", # Submitted forecast call "forecast_updated", # Updated forecast history "quota", # Quota values "adjustment", # Manager adjustments "crm_total", # Total CRM pipeline "crm_closed", # Closed-won CRM amounts ] ``` ### Step 2: Build the Export Pipeline ```python # export_pipeline.py from clari_client import ClariClient from config import ExportConfig import json from datetime import datetime def run_expo...

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

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
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-performance-tuning

Optimize Clari API performance with caching, batch exports, and data pipeline efficiency. Use when exports take too long, optimizing data warehouse load times, or reducing API calls in multi-forecast environments. Trigger with phrases like "clari performance", "clari slow export", "optimize clari pipeline", "clari caching".

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