CU

cursor-privacy-settings

Manages privacy controls and data handling configurations for the Cursor IDE.

Install

mkdir -p .claude/skills/cursor-privacy-settings && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/1760" && unzip -o skill.zip -d .claude/skills/cursor-privacy-settings && rm skill.zip

Installs to .claude/skills/cursor-privacy-settings

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Configure Cursor privacy mode, data handling, telemetry, and sensitive
70 charsno explicit “when” trigger
Beginner

Key capabilities

  • Enable Privacy Mode to prevent code from being used for AI model training.
  • Verify Privacy Mode status for individual users and team enforcement.
  • Exclude sensitive files from AI features and indexing using `.cursorignore`.
  • Configure telemetry settings to limit data collection.
  • Allowlist required domains for Cursor's network security.
  • Configure proxy settings for Cursor API communication.

How it works

The skill provides instructions for configuring Cursor's privacy controls through settings, file exclusions, and network configurations to protect code and data.

Inputs & outputs

You give it
Cursor privacy settings (e.g., Privacy Mode toggle, telemetry level, .cursorignore file).
You get back
Configured Cursor privacy and data handling settings, with verification of their status.

When to use cursor-privacy-settings

  • Enable privacy mode for code security
  • Configure telemetry settings
  • Check data retention compliance
  • Enforce privacy settings in team environments

About this skill

Cursor Privacy Settings

Configure Cursor's privacy controls to protect your code and data. Covers Privacy Mode, data handling policies, file exclusion, telemetry, and enterprise security settings.

Privacy Mode

What Privacy Mode Does

With Privacy Mode ONWith Privacy Mode OFF
Zero data retention at model providersProviders may retain data per their policies
Code not used for training (Cursor or providers)Code may be used to improve AI models
Embeddings computed without storing sourceSame embedding behavior
Telemetry: anonymous usage onlyTelemetry may include code snippets

Enabling Privacy Mode

Individual: Cursor Settings > General > Privacy Mode > ON

Team enforcement (Business/Enterprise): Admin Dashboard > Privacy > "Enforce Privacy Mode for all members"

When team-enforced:

  • Individual users cannot disable Privacy Mode
  • Client pings server every 5 minutes to verify enforcement
  • New members automatically have Privacy Mode enabled

Verifying Privacy Mode

  1. Cursor Settings > General -- check Privacy Mode toggle
  2. cursor.com/settings -- shows account-level status
  3. For teams: Admin Dashboard shows enforcement status per member

Data Flow: Where Your Code Goes

Your Code in Editor
       │
       ├─► Tab Completion ──► Cursor's proprietary model server
       │                      (zero retention with Privacy Mode)
       │
       ├─► Chat/Composer ──► Model provider (OpenAI/Anthropic/Google)
       │                     (zero retention agreements in place)
       │
       ├─► Codebase Index ─► Cursor embedding API ─► Turbopuffer (vector DB)
       │                     (embeddings only, no plaintext code)
       │
       └─► BYOK ───────────► Your API provider directly
                             (your provider's data policy applies)

What IS Stored

DataStored WhereRetention
Embeddings (vectors)Turbopuffer (cloud)Until project re-indexed
Obfuscated file metadataCursor serversActive session only
Anonymous telemetryCursor analyticsAggregated, no PII
Account infoCursor auth serversWhile account active

What Is NOT Stored (Privacy Mode ON)

  • Plaintext source code
  • Chat prompts and responses
  • File contents sent for completion
  • Code snippets from Tab suggestions

Sensitive File Exclusion

.cursorignore (Best-Effort AI Exclusion)

# .cursorignore -- prevent files from AI features + indexing

# Credentials and secrets
.env
.env.*
.env.local
.env.production
**/secrets/
**/credentials/
**/*.pem
**/*.key
**/*.p12

# Regulated data
**/pii/
**/hipaa/
**/financial-data/

# Internal configuration
.cursor-config-private
infrastructure/terraform.tfvars

Important: .cursorignore is best-effort. Due to LLM unpredictability, it is not a hard security boundary. Do not rely solely on .cursorignore to protect truly sensitive data.

Defense in Depth

Layer 1: .gitignore        → Secrets never in repo
Layer 2: .env files        → Config via environment variables
Layer 3: .cursorignore     → Best-effort AI exclusion
Layer 4: Privacy Mode      → Zero data retention at providers
Layer 5: BYOK + Azure      → Route through your own infrastructure

Telemetry Configuration

What Cursor Collects

With Privacy Mode ON, telemetry is limited to:

  • Feature usage counts (how often Chat/Composer/Tab used)
  • Error reports (crashes, not code content)
  • Performance metrics (response times)
  • Extension compatibility data

Disabling Telemetry

// settings.json
{
  "telemetry.telemetryLevel": "off"
}

Or: Cursor Settings > search "telemetry" > set to "off"

Note: Disabling telemetry may reduce Cursor's ability to diagnose issues affecting your account.

Network Security

Required Domains

Allowlist these domains in corporate firewalls/proxies:

api.cursor.com           → AI API requests
api2.cursor.com          → AI API requests (fallback)
auth.cursor.com          → Authentication
*.turbopuffer.com        → Codebase indexing (embeddings)
download.cursor.com      → Updates

Proxy Configuration

// settings.json
{
  "http.proxy": "http://proxy.corp.com:8080",
  "http.proxyStrictSSL": true,
  "http.proxyAuthorization": "Basic base64-encoded-credentials"
}

TLS/SSL

All Cursor API communication uses TLS 1.2+. Certificate pinning is not supported, so corporate SSL inspection proxies work (add proxy CA to system trust store).

Compliance Mapping

SOC 2

ControlCursor Coverage
CC6.1 Logical accessSSO, RBAC, MFA via IdP
CC6.6 System boundariesPrivacy Mode, .cursorignore
CC6.7 Data transmissionTLS 1.2+ for all API calls
CC7.2 MonitoringAdmin dashboard usage analytics

GDPR

RequirementCursor Coverage
Data minimizationPrivacy Mode: zero retention
Right to erasureAccount deletion removes all server-side data
Data processing agreementAvailable on request (Enterprise)
Sub-processor listPublished at cursor.com/privacy

HIPAA

Cursor does not have a BAA (Business Associate Agreement) as of early 2026. For HIPAA-regulated code:

  • Enable Privacy Mode
  • Use .cursorignore for PHI-containing files
  • Consider BYOK through Azure with BAA
  • Consult your compliance team before use

Enterprise Considerations

  • SOC 2 Type II report: Available on request for Enterprise customers
  • Penetration test results: Annual pen tests, results shared under NDA
  • Data residency: Cursor processes requests via US and EU infrastructure. No region pinning available yet
  • Encryption: AES-256 at rest, TLS 1.2+ in transit
  • Incident response: Cursor maintains a security incident response plan (details in SOC 2 report)

Resources

When not to use it

  • When relying solely on `.cursorignore` for hard security boundaries.
  • When needing a Business Associate Agreement (BAA) for HIPAA-regulated code without BYOK through Azure.
  • When certificate pinning is required for TLS/SSL communication.

Limitations

  • `.cursorignore` is a best-effort exclusion and not a hard security boundary.
  • Cursor does not have a BAA for HIPAA-regulated code without BYOK through Azure.
  • Certificate pinning is not supported for TLS/SSL communication.

How it compares

This skill offers specific configuration steps for Cursor's privacy features, unlike general security practices which may not apply to Cursor's unique data flow and model interactions.

Compared to similar skills

cursor-privacy-settings side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
cursor-privacy-settings (this skill)625dReviewBeginner
reverse-engineering-tools733moNo flagsAdvanced
game-hacking-techniques422moNo flagsAdvanced
solidity-security152moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

reverse-engineering-tools

gmh5225

Guide for reverse engineering tools and techniques used in game security research. Use this skill when working with debuggers, disassemblers, memory analysis tools, binary analysis, or decompilers for game security research.

73204

game-hacking-techniques

gmh5225

Guide for game hacking techniques and cheat development. Use this skill when researching memory manipulation, code injection, ESP/aimbot development, overlay rendering, or game exploitation methodologies.

42128

solidity-security

wshobson

Master smart contract security best practices to prevent common vulnerabilities and implement secure Solidity patterns. Use when writing smart contracts, auditing existing contracts, or implementing security measures for blockchain applications.

15115

1password

openclaw

Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.

2799

senior-security

davila7

Comprehensive security engineering skill for application security, penetration testing, security architecture, and compliance auditing. Includes security assessment tools, threat modeling, crypto implementation, and security automation. Use when designing security architecture, conducting penetration tests, implementing cryptography, or performing security audits.

3191

ghidra

mitsuhiko

Reverse engineer binaries using Ghidra's headless analyzer. Decompile executables, extract functions, strings, symbols, and analyze call graphs without GUI.

16105

Search skills

Search the agent skills registry