clari-pack
Claude Code skill pack for Clari (18 skills)
Installation
Open Claude Code and run this command:
/plugin install clari-pack@claude-code-plugins-plus
Use --global to install for all projects, or --project for current project only.
What It Does
> 18 production-grade Claude Code skills for revenue intelligence and forecast data pipelines with Clari
Skills (18) plugin-local skills
Integrate Clari export pipeline testing and validation into CI/CD.
Diagnose and fix Clari API errors including auth failures, export issues, and data mismatches.
Build a Clari forecast export pipeline to your data warehouse.
Build Clari revenue analytics: pipeline coverage, forecast accuracy, and rep performance dashboards from exported data.
Optimize Clari API usage and integration costs.
Collect Clari API diagnostic info for support cases.
Deploy Clari export pipelines to production with Airflow, Cloud Functions, or Lambda.
Export your first Clari forecast and pipeline snapshot.
Configure Clari API authentication with API key and set up export access.
Set up local development for Clari API integrations with mock data.
Optimize Clari API performance with caching, batch exports, and data pipeline efficiency.
Production readiness checklist for Clari API integrations.
Handle Clari API rate limits with backoff and export job scheduling.
Reference architecture for Clari revenue intelligence integrations.
Production-ready Clari API client patterns in Python and TypeScript.
Secure Clari API tokens and implement data handling best practices.
Handle Clari API version changes and export schema migrations.
Monitor Clari forecast changes using export job polling and change detection.
How It Works
1. Install the Pack
/plugin install clari-pack@claude-code-plugins-plus
2. Get Your API Token
Log in to app.clari.com, go to User Settings > API Token, and click Generate New API Token.
3. Export Your First Forecast
import requests, os
api_key = os.environ["CLARI_API_KEY"]
headers = {"apikey": api_key, "Content-Type": "text/plain"}
forecasts = requests.get(
"https://api.clari.com/v4/export/forecast/list",
headers=headers
).json()
print(f"Found {len(forecasts['forecasts'])} forecasts")
4. Build Your Pipeline
Follow clari-core-workflow-a to build a complete export-transform-load pipeline.