CU

cursor-prod-checklist

A guide for hardening Cursor IDE for production, covering security, project rules, and team configuration standards.

Install

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

Installs to .claude/skills/cursor-prod-checklist

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.

Production readiness checklist for Cursor IDE setup: security, rules,
69 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Configure authentication and licensing for Cursor IDE
  • Define and commit project-specific rules to Git
  • Optimize codebase indexing with ignore files
  • Set up privacy and security features
  • Standardize AI configuration and version control integration

How it works

The skill provides a checklist and example configurations for hardening Cursor IDE, including setting up authentication, project rules, indexing ignores, and privacy settings.

Inputs & outputs

You give it
A Cursor IDE setup for a team or individual
You get back
A production-ready Cursor IDE configuration with security, privacy, and team standards applied

When to use cursor-prod-checklist

  • Harden Cursor for production
  • Configure project rules
  • Optimize codebase indexing
  • Standardize team IDE settings

About this skill

Cursor Production Checklist

Comprehensive checklist for configuring Cursor IDE for production use. Covers security hardening, project rules, indexing optimization, privacy settings, and team standardization.

Pre-Flight Checklist

Authentication & Licensing

[ ] All team members authenticated with correct plan (Pro/Business/Enterprise)
[ ] SSO configured (Business/Enterprise) -- see cursor-sso-integration skill
[ ] Privacy Mode enabled (enforced at team level for Business+)
[ ] Verify plan at cursor.com/settings

Project Rules

[ ] .cursor/rules/ directory created and committed to git
[ ] Core project rule with alwaysApply: true (stack, conventions, standards)
[ ] Language-specific rules with glob patterns (*.ts, *.py, etc.)
[ ] Security rule: "Never suggest hardcoded credentials or secrets"
[ ] No sensitive data (API keys, passwords) in any rule file

Minimum viable rule set:

# .cursor/rules/project.mdc
---
description: "Core project context"
globs: ""
alwaysApply: true
---
# Project: [Name]
Stack: [framework, language, database, etc.]
Package manager: [npm/pnpm/yarn]

## Conventions
- [your team conventions here]
- Never commit console.log statements
- All functions require TypeScript return types
- Use Conventional Commits format
# .cursor/rules/security.mdc
---
description: "Security constraints for AI-generated code"
globs: ""
alwaysApply: true
---
# Security Rules
- NEVER hardcode API keys, passwords, or secrets in code
- NEVER disable HTTPS/TLS verification
- ALWAYS use parameterized queries (no string concatenation for SQL)
- ALWAYS validate and sanitize user input
- Use environment variables for all configuration values

Indexing Configuration

[ ] .cursorignore created at project root
[ ] Excluded: node_modules/, dist/, build/, .next/, vendor/
[ ] Excluded: *.min.js, *.map, *.lock, *.sqlite
[ ] Excluded: .env*, secrets/, credentials/
[ ] .cursorindexingignore created for large-but-useful files
[ ] Verified indexing completes (status bar shows "Indexed")
[ ] Tested @Codebase queries return relevant results

Privacy & Security

[ ] Privacy Mode: ON (Cursor Settings > General > Privacy Mode)
[ ] Verified: cursor.com/settings shows "Privacy Mode: Enabled"
[ ] .cursorignore covers all files with PII or regulated data
[ ] API keys (if BYOK) stored in Cursor settings, NOT in project files
[ ] Team members briefed: AI output is a draft, not production-ready code

AI Configuration

[ ] Default model set (Cursor Settings > Models)
[ ] BYOK configured if required by team (see cursor-api-key-management skill)
[ ] Auto mode evaluated vs fixed model selection
[ ] Tab completion enabled and tested
[ ] Conflicting extensions disabled (Copilot, TabNine, Codeium)

Version Control Integration

[ ] .cursor/rules/ committed to git (team shares rules)
[ ] .cursorignore committed to git
[ ] .cursorindexingignore committed to git
[ ] AI-generated commit messages reviewed before pushing
[ ] Pre-commit hooks run (linting, tests) regardless of AI-generated code

Team Onboarding Template

# Cursor IDE Onboarding

## Setup (15 minutes)
1. Download Cursor from cursor.com/download
2. Sign in with your @company.com email (SSO will redirect)
3. Open our project repository in Cursor
4. Wait for indexing to complete (status bar)

## Daily Workflow
- Cmd+L (Chat): Ask questions, plan features
- Cmd+K (Inline Edit): Fix/refactor selected code
- Cmd+I (Composer): Multi-file changes
- Tab: Accept AI completions while typing

## Our Rules
- Project rules are in .cursor/rules/ -- read them
- Always review AI-generated code before committing
- Start new chats for new tasks (don't continue stale conversations)
- Use @Files for specific context, @Codebase for discovery

## Prohibited
- Do NOT paste credentials into Chat/Composer
- Do NOT disable Privacy Mode
- Do NOT commit AI-generated code without review and testing

Maintenance Schedule

TaskFrequencyHow
Review and update project rulesMonthlyAudit .cursor/rules/ for stale info
Verify Privacy Mode enforcementQuarterlyAdmin dashboard or Cursor Settings
Rotate API keys (BYOK)QuarterlyProvider console + Cursor Settings
Update .cursorignoreWhen project structure changesAdd new build/data directories
Review extension listMonthlyDisable unused, check for conflicts
Cursor version updateAs releasedHelp > Check for Updates
Team onboarding doc updateWhen workflow changesKeep setup steps current

Production Anti-Patterns

Anti-PatternRiskFix
No .cursor/rules/AI generates inconsistent codeCreate rules with team conventions
No .cursorignoreSecrets indexed, large files slow indexingAdd comprehensive ignore patterns
Privacy Mode offCode stored by model providersEnable at team level (admin dashboard)
One giant conversationContext overflow, bad suggestionsStart new chat per task
Blind "Apply All"Bugs, wrong patterns committedReview every diff before applying
No pre-commit hooksAI-generated bugs reach main branchEnforce lint + test hooks

Enterprise Considerations

  • Compliance documentation: Maintain records of Cursor configuration for SOC 2 / ISO 27001 audits
  • Change management: Treat .cursor/rules/ changes like infrastructure changes -- PR and review
  • Access reviews: Quarterly review of team membership and seat assignments
  • Data classification: Map .cursorignore to your data classification policy

Resources

Limitations

  • Requires manual configuration steps within Cursor IDE and project files
  • SSO configuration requires Business/Enterprise plan
  • BYOK configuration requires separate skill

How it compares

This skill offers a structured, complete checklist for Cursor IDE production readiness, unlike ad-hoc configurations that may miss critical security or team standardization steps.

Compared to similar skills

cursor-prod-checklist side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
cursor-prod-checklist (this skill)427dReviewIntermediate
lint-and-validate66moReviewBeginner
codex-code-review18moReviewIntermediate
clay-sdk-patterns027dCautionIntermediate

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

Search skills

Search the agent skills registry