clari-pack

v1.6.0 by Jeremy Longshore

Claude Code skill pack for Clari (18 skills)

18 plugin-local skills
MIT License
Claude Code Adapters (declared)

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

clari-ci-integration View full skill →

Integrate Clari export pipeline testing and validation into CI/CD.

ReadWriteEditBash(gh:*)
clari-common-errors View full skill →

Diagnose and fix Clari API errors including auth failures, export issues, and data mismatches.

ReadBash(curl:*)Grep
clari-core-workflow-a View full skill →

Build a Clari forecast export pipeline to your data warehouse.

ReadWriteEditBash(python3:*)Bash(curl:*)Grep
clari-core-workflow-b View full skill →

Build Clari revenue analytics: pipeline coverage, forecast accuracy, and rep performance dashboards from exported data.

ReadWriteEditBash(python3:*)Grep
clari-cost-tuning View full skill →

Optimize Clari API usage and integration costs.

ReadWriteEditGrep
clari-debug-bundle View full skill →

Collect Clari API diagnostic info for support cases.

ReadBash(curl:*)Bash(python3:*)Grep
clari-deploy-integration View full skill →

Deploy Clari export pipelines to production with Airflow, Cloud Functions, or Lambda.

ReadWriteEditBash(gcloud:*)Bash(aws:*)
clari-hello-world View full skill →

Export your first Clari forecast and pipeline snapshot.

ReadWriteEditBash(curl:*)Bash(python3:*)
clari-install-auth View full skill →

Configure Clari API authentication with API key and set up export access.

ReadWriteEditBash(curl:*)Bash(pip:*)Grep
clari-local-dev-loop View full skill →

Set up local development for Clari API integrations with mock data.

ReadWriteEditBash(npm:*)Bash(python3:*)Grep
clari-performance-tuning View full skill →

Optimize Clari API performance with caching, batch exports, and data pipeline efficiency.

ReadWriteEdit
clari-prod-checklist View full skill →

Production readiness checklist for Clari API integrations.

ReadBash(curl:*)Grep
clari-rate-limits View full skill →

Handle Clari API rate limits with backoff and export job scheduling.

ReadWriteEdit
clari-reference-architecture View full skill →

Reference architecture for Clari revenue intelligence integrations.

ReadWriteEditGrep
clari-sdk-patterns View full skill →

Production-ready Clari API client patterns in Python and TypeScript.

ReadWriteEdit
clari-security-basics View full skill →

Secure Clari API tokens and implement data handling best practices.

ReadWriteEditGrep
clari-upgrade-migration View full skill →

Handle Clari API version changes and export schema migrations.

ReadWriteEditBash(curl:*)Grep
clari-webhooks-events View full skill →

Monitor Clari forecast changes using export job polling and change detection.

ReadWriteEditBash(curl:*)Bash(python3:*)

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.

Ready to use clari-pack?