clari-security-basics

Solid

Secure Clari API tokens and implement data handling best practices. Use when managing API tokens, restricting data access, or implementing PII handling for exported forecast data. Trigger with phrases like "clari security", "clari api key rotation", "secure clari", "clari pii handling".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
95
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Clari Security Basics ## Overview Secure your Clari integration: API token management, exported data PII handling, and access control best practices. ## Instructions ### Step 1: Token Management ```bash # Store token in secrets manager aws secretsmanager create-secret \ --name "clari/prod/api-token" \ --secret-string "${CLARI_API_KEY}" # In CI/CD, load from secrets export CLARI_API_KEY=$(aws secretsmanager get-secret-value \ --secret-id "clari/prod/api-token" --query SecretString --output text) ``` **Rotation**: Clari API tokens are generated per-user. To rotate, generate a new token in User Settings, update all consumers, then discard the old one. ### Step 2: Exported Data PII Handling Clari export data contains PII (rep names, emails, deal amounts): ```python def redact_pii(entries: list[dict]) -> list[dict]: """Redact PII from forecast entries for non-production use.""" import hashlib redacted = [] for entry in entries: r = entry.copy() if "ownerEmail" in r: r["ownerEmail"] = hashlib.sha256( r["ownerEmail"].encode() ).hexdigest()[:12] + "@redacted" if "ownerName" in r: r["ownerName"] = f"Rep-{hashlib.sha256(r['ownerName'].encode()).hexdigest()[:6]}" redacted.append(r) return redacted ``` ### Step 3: Security Checklist - [ ] API token in secrets manager, not in code - [ ] `.env` files in `.gitignore` - [ ] Exported data stored in access-controlled war...

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-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-prod-checklist

Production readiness checklist for Clari API integrations. Use when launching a Clari data pipeline, validating export automation, or preparing for production forecast sync. Trigger with phrases like "clari production", "clari go-live", "clari checklist", "clari launch".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clari-common-errors

Diagnose and fix Clari API errors including auth failures, export issues, and data mismatches. Use when Clari API calls fail, exports return empty data, or forecast numbers do not match the UI. Trigger with phrases like "clari error", "clari not working", "clari api failure", "fix clari", "debug 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
AI & Automation Solid

clari-cost-tuning

Optimize Clari API usage and integration costs. Use when reducing API call volume, optimizing export frequency, or evaluating Clari license utilization. Trigger with phrases like "clari cost", "clari api usage", "reduce clari calls", "clari optimization".

2,266 Updated today
jeremylongshore