惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
MongoDB | Blog
MongoDB | Blog
V
V2EX
博客园 - 【当耐特】
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
Martin Fowler
Martin Fowler
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
B
Blog
V
Visual Studio Blog
D
DataBreaches.Net
C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
5 .cursorrules Antipatterns Killing Your AI Productivity
BLNCraft · 2026-05-30 · via DEV Community

BLNCraft

Your .cursorrules file is probably not working the way you think it is.

Not because Cursor is broken — but because most .cursorrules setups make the same five mistakes. Here is what they are and how to fix them.


Mistake 1: One file, everything in it

The most common .cursorrules antipattern is the monolith: one file at the project root, 300 lines long, covering TypeScript conventions AND API auth patterns AND deployment notes AND "always write clean code."

The problem: Cursor loads this file into every context, regardless of what you are editing. When you are fixing a CSS bug, your SQL query rules are burning token budget for nothing. When context gets long, older rules get compressed out — which means your most important constraints are the ones most likely to disappear.

Fix: Split into scoped rule files.

.cursorrules                  # 50 lines: project overview, stack, non-negotiables
src/api/.cursorrules          # Auth patterns, error format, rate limiting
src/components/.cursorrules   # Component conventions, state patterns  
scripts/.cursorrules          # Env handling, idempotency, logging

Each file loads only when files in that directory are open. Your total in-context rule budget stays tight.


Mistake 2: Vague constraints

"Write clean, readable code."
"Keep functions small."
"Follow best practices."

These are not rules. They are aspirations. The AI already knows what "best practices" means — and it will apply its own interpretation, not yours.

Rules need to be specific enough to fail. If you cannot imagine a concrete code sample that violates the rule, the rule is too vague to enforce.

Vague: "Handle errors properly."
Specific: "All async functions must have a try/catch. Errors must be logged via logger.error() before rethrowing. Never swallow errors silently."

Vague: "Use descriptive variable names."
Specific: "Boolean variables must start with is, has, should, or can. No single-letter names outside of loop indices."

The second versions are automatable. The first versions are vibes.


Mistake 3: No project structure context

The AI does not know your project layout unless you tell it. This leads to imports from wrong paths, new files dropped in wrong directories, and helper functions duplicated because the AI didn't know one already existed.

Add a compact directory map early in your .cursorrules:

Project structure:
src/
  api/          # Express routes + middleware
  services/     # Business logic (no HTTP)
  models/       # Prisma schema types
  utils/        # Pure functions, no side effects
  types/        # Shared TypeScript interfaces
tests/          # Mirrors src/ structure
scripts/        # One-off automation, not imported by app

Eight lines. Enough to save the AI from putting a database call in a route handler because it didn't know services/ exists.


Mistake 4: Rules that contradict the codebase

If your .cursorrules says "never use any types" but your codebase has 200 any type usages, the rule is fighting the existing code. The AI gets conflicting signals: the rule says one thing, the examples in the codebase say another. The examples usually win.

Your rules should describe what the code already does, not what you wish it did.

If there is a gap — you want to adopt a new pattern but your codebase isn't there yet — say so explicitly:

# Migration in progress: we are removing `any` types.
# New code must not use `any`. Existing `any` usages will be fixed incrementally.
# Do not add new `any` even when refactoring old code.

This gives the AI a clear mandate without creating a contradiction.


Mistake 5: Duplicating rules across tools without a source of truth

If you use Cursor + Claude Code, you end up with .cursorrules and CLAUDE.md saying the same things in slightly different ways. Then one gets updated and the other doesn't. Then they contradict each other. Then neither is trusted.

The fix is a single authoritative source with tool-specific adaptations:

  1. Keep your core project rules in CLAUDE.md (it is the most structured format and is loaded by Claude Code as a system prompt prefix).
  2. Have .cursorrules import or reference the same core rules, adding only Cursor-specific formatting/behavior.
  3. When you update the rules, update the source — not each tool's file separately.

For greenfield projects, starting with a production-configured starter that already has both files wired up correctly saves this setup cost entirely. The Vibe Coder Kit includes 12 starters (Next.js SaaS, Express + JWT, FastAPI, Discord Bot, and more) where .cursorrules and CLAUDE.md are already synchronized and match the actual codebase structure.


The test for a good rules file

Read each rule and ask: "Could a developer violate this rule while genuinely trying to follow it?" If yes, the rule is too ambiguous. Make it specific enough that violations are unambiguous.

Then count your lines. If your .cursorrules is over 100 lines, split it. If it is under 20, you probably have not captured your real conventions yet.

Short. Specific. Scoped. Consistent with the codebase.

Those four constraints will make your AI coding setup work the way the demos promise.


BLN Craft builds developer tools for AI-native workflows. Find us at blncraft.com.