vercel-data-handling

Solid

Implement data handling, PII protection, and GDPR/CCPA compliance for Vercel deployments. Use when handling sensitive data in serverless functions, implementing data redaction, or ensuring privacy compliance on Vercel. Trigger with phrases like "vercel data", "vercel PII", "vercel GDPR", "vercel data retention", "vercel privacy", "vercel compliance".

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

# Vercel Data Handling ## Overview Handle sensitive data correctly on Vercel: PII redaction in logs, GDPR-compliant data processing in serverless functions, secure cookie management, and data residency configuration. Covers both what Vercel stores and what your application should protect. ## Prerequisites - Understanding of GDPR/CCPA requirements - Vercel Pro or Enterprise (for data residency options) - Logging infrastructure with PII awareness ## Instructions ### Step 1: Understand What Vercel Stores | Data Type | Where | Retention | Control | |-----------|-------|-----------|---------| | Runtime logs | Vercel servers | 1hr (free), 30d (Plus) | Log drains | | Build logs | Vercel servers | 30 days | Automatic | | Analytics data | Vercel | Aggregated, no PII | Disable in dashboard | | Deployment source | Vercel | Until deleted | Manual deletion | | Environment variables | Vercel (encrypted) | Until deleted | Scoped access | ### Step 2: PII Redaction in Logs ```typescript // lib/redact.ts — redact PII before logging const PII_PATTERNS: [RegExp, string][] = [ [/\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,}\b/g, '[EMAIL]'], [/\b\d{3}[-.]?\d{3}[-.]?\d{4}\b/g, '[PHONE]'], [/\b\d{3}-\d{2}-\d{4}\b/g, '[SSN]'], [/\b\d{4}[\s-]?\d{4}[\s-]?\d{4}[\s-]?\d{4}\b/g, '[CARD]'], [/\b(?:Bearer|token|key|secret|password)\s*[:=]\s*\S+/gi, '[CREDENTIAL]'], ]; export function redact(text: string): string { let result = text; for (const [pattern, replacement] of PII_PATTERNS) ...

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

cohere-data-handling

Implement data privacy for Cohere API calls with PII redaction and compliance. Use when handling sensitive data, implementing PII redaction before API calls, or ensuring GDPR/CCPA compliance with Cohere integrations. Trigger with phrases like "cohere data", "cohere PII", "cohere GDPR", "cohere data retention", "cohere privacy", "cohere redact".

2,266 Updated today
jeremylongshore
AI & Automation Featured

mistral-data-handling

Implement Mistral AI PII handling, data retention, and GDPR/CCPA compliance patterns. Use when handling sensitive data, implementing data redaction, configuring retention policies, or ensuring compliance with privacy regulations for Mistral AI integrations. Trigger with phrases like "mistral data", "mistral PII", "mistral GDPR", "mistral data retention", "mistral privacy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

groq-data-handling

Implement prompt sanitization, PII redaction, response filtering, and usage tracking for Groq API integrations. Trigger with phrases like "groq data", "groq PII", "groq GDPR", "groq data retention", "groq privacy", "groq compliance".

2,266 Updated today
jeremylongshore
AI & Automation Featured

clade-data-handling

Handle sensitive data with Claude — PII redaction, conversation management, Use when working with data-handling patterns. context window optimization, and data retention policies. Trigger with "anthropic data privacy", "claude pii", "anthropic context window", "manage claude conversations", "anthropic data retention".

2,266 Updated today
jeremylongshore
AI & Automation Featured

anth-data-handling

Implement data privacy, PII handling, and compliance patterns for Claude API. Use when handling sensitive data, implementing PII redaction, or configuring data retention for GDPR/CCPA compliance with Claude. Trigger with phrases like "anthropic data privacy", "claude PII", "anthropic gdpr", "claude data handling", "redact data claude".

2,266 Updated today
jeremylongshore