palantir-data-handling

Featured

Implement Palantir Foundry data handling with PII protection, markings, and GDPR compliance. Use when handling sensitive data in Foundry, implementing data classifications, or ensuring compliance with privacy regulations. Trigger with phrases like "palantir data", "foundry PII", "palantir GDPR", "foundry data protection", "palantir markings".

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

# Palantir Data Handling ## Overview Handle sensitive data in Foundry using markings (data classifications), column-level security, PII redaction in transforms, and GDPR/CCPA deletion workflows. ## Prerequisites - Foundry enrollment with Markings enabled - Understanding of your organization's data classification policy - Familiarity with transforms (`palantir-core-workflow-a`) ## Instructions ### Step 1: Data Classification with Markings Foundry Markings control who can access data at the dataset, column, or row level. | Marking | Access | Use Case | |---------|--------|----------| | `PUBLIC` | All users | Aggregated reports, reference data | | `INTERNAL` | Employees only | Business metrics, operational data | | `CONFIDENTIAL` | Specific groups | Customer PII, financial data | | `RESTRICTED` | Named individuals | Compensation, legal, M&A | ### Step 2: PII Redaction in Transforms ```python from transforms.api import transform_df, Input, Output from pyspark.sql import functions as F @transform_df( Output("/Company/datasets/customers_safe"), customers=Input("/Company/datasets/raw_customers"), ) def redact_pii(customers): """Create an analytics-safe view with PII removed.""" return ( customers .withColumn("email", F.sha2(F.col("email"), 256)) # Hash email .withColumn("phone", F.lit("***-***-****")) # Mask phone .withColumn("ssn", F.lit(None).cast("string")) # Remove SSN .with...

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

palantir-core-workflow-a

Build Palantir Foundry data pipelines using Python transforms. Use when creating ETL pipelines, writing @transform decorators, or building dataset-to-dataset processing in Foundry. Trigger with phrases like "palantir pipeline", "foundry transform", "palantir ETL", "palantir data pipeline", "foundry python transform".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-security-basics

Apply Palantir Foundry security best practices for credentials, scopes, and access control. Use when securing API tokens, implementing least privilege access, or auditing Foundry security configuration. Trigger with phrases like "palantir security", "foundry secrets", "secure palantir", "palantir API key security", "foundry scopes".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-migration-deep-dive

Execute major Palantir Foundry migration strategies including data migration, API version upgrades, and platform transitions. Use when migrating data into Foundry, upgrading between API versions, or re-platforming existing integrations. Trigger with phrases like "migrate to palantir", "foundry migration", "palantir data migration", "foundry replatform".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-reference-architecture

Implement Palantir Foundry reference architecture with best-practice project layout. Use when designing new Foundry integrations, planning data pipeline architecture, or establishing patterns for Ontology-driven applications. Trigger with phrases like "palantir architecture", "foundry best practices", "foundry project structure", "how to organize palantir".

2,266 Updated today
jeremylongshore
AI & Automation Featured

adobe-data-handling

Implement data handling for Adobe APIs including PII redaction in logs, Firefly content policy compliance, PDF document data classification, and GDPR/CCPA data subject access requests via Adobe Privacy Service. Trigger with phrases like "adobe data", "adobe PII", "adobe GDPR", "adobe data retention", "adobe privacy", "adobe content policy".

2,266 Updated today
jeremylongshore