npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@intentsolutionsio/clari-pack

v1.0.2

Published

Claude Code skill pack for Clari - 18 skills covering revenue operations, forecasting, and pipeline management

Readme

Clari Skill Pack

18 production-grade Claude Code skills for revenue intelligence and forecast data pipelines with Clari

What Is Clari?

Clari is an enterprise revenue orchestration platform that provides AI-powered forecasting, pipeline management, and revenue intelligence. The platform offers:

  • Export API (v4) for extracting forecast submissions, quota, adjustments, and CRM data
  • Copilot API for conversation intelligence (call transcripts, coaching insights)
  • Revenue intelligence with AI-driven deal inspection and pipeline analytics
  • Forecast submissions tracking with historical change detection

The Clari Export API at api.clari.com/v4 uses apikey header authentication. Export jobs are asynchronous -- you POST to start an export, poll for completion, then download results. This skill pack provides real API calls and production pipeline patterns for every stage of Clari integration.

Installation

/plugin install clari-pack@claude-code-plugins-plus

Skills Included

Getting Started (S01-S04)

| Skill | Description | |-------|-------------| | clari-install-auth | API token generation, environment config, Copilot OAuth setup | | clari-hello-world | First API calls: list forecasts, export data, check job status | | clari-local-dev-loop | Mock forecast data, test pipeline locally, development scripts | | clari-sdk-patterns | Python and TypeScript API client wrappers with job polling |

Core Workflows (S05-S08)

| Skill | Description | |-------|-------------| | clari-core-workflow-a | Forecast export pipeline to Snowflake, BigQuery, or PostgreSQL | | clari-core-workflow-b | Revenue analytics: accuracy tracking, pipeline coverage, change detection | | clari-common-errors | Auth failures, empty exports, job timeouts, data mismatches | | clari-debug-bundle | Collect API diagnostics for support cases |

Operations (S09-S12)

| Skill | Description | |-------|-------------| | clari-rate-limits | Export polling backoff, sequential job scheduling | | clari-security-basics | Token management, PII handling for exported data | | clari-prod-checklist | Production readiness for forecast sync pipelines | | clari-upgrade-migration | API version migration, schema change detection |

Pro Skills (P13-P18)

| Skill | Description | |-------|-------------| | clari-ci-integration | GitHub Actions for pipeline testing and schema validation | | clari-deploy-integration | Deploy to Airflow, Lambda, or Cloud Functions | | clari-webhooks-events | Forecast change detection, Slack alerts, Copilot webhooks | | clari-performance-tuning | Parallel exports, caching, incremental warehouse loads | | clari-cost-tuning | Reduce API calls, optimize export frequency and data types | | clari-reference-architecture | Data platform architecture with warehouse schema and analytics |

Quick Start

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

# List forecasts
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.

Key Clari Links

License

MIT