Where did the vibe go?

Describe the Bug

Why guys oh why you take my vibe away? I ask cursor to make change but it does not make change. Please, oh please, bring back my vibes.

Open cursor and try to use it but it will not change the files. The prompt gets changed to something like this: For the code present, we get this error:

Cannot find name 'email'.

How can I resolve this? If you propose a fix, please make it concise.

Steps to Reproduce

Any prompt that I give it whether I manually type the prompt or click the Add to Chat feature gets this annoying bug. The only way to get it to edit the files is after it response to say “please make the changes for me”.

Expected Behavior

The prompt shouldn’t just say to propose a fix but it should also make the fixes.

Operating System

Linux

Current Cursor Version (Menu → About Cursor → Copy)

Version: 1.1.3
VSCode Version: 1.96.2
Commit: 979ba33804ac150108481c14e0b5cb970bda3260
Date: 2025-06-15T06:37:42.715Z
Electron: 34.5.1
Chromium: 132.0.6834.210
Node.js: 20.19.0
V8: 13.2.152.41-electron.0
OS: Linux x64 6.11.0-26-generic

Additional Information

It’s been happening for the past 2-3 days. The only way I can get it to edit stuff is to say “please make the changes” after the response. This error has been reported multiple times in this forum but it seems to go ignored and unresolved.

Does this stop you from using Cursor

No - Cursor works, but with this issue

Hi @jiojgioerjgeroigmer, thank you for the detailed post.

AI models are getting more advanced, mostly now they take your request more literal.

e.g. if you ask “How can I resolve this?” the AI will process this to give you the answer how YOU can solve it :slight_smile:

So try instead to ask.

Cannot find name 'email'.

Check the cause for this issue and propose a fix in concise response

You can also ask AI to do the change directly.

As this is not a change from Cursor, it is not a bug but AI model behavior.

I should clarify: I didn’t add the “How can I resolve this”…Cursor did. EDIT: In my post I say “The prompt gets changed”

How do I stop Cursor from editing my prompt, then?

How do you mean that Cursor edited your prompt? When I type a prompt into the field it is processed as such and not changed in Cursor window.

I have the following code (which is wrong):
<div>my page</wiv>

I highlight that block and then click on “Add to chat”. The prompt that gets inserted is:

For the code present, we get this error:

Property 'wiv' does not exist on type 'JSX.IntrinsicElements'.

How can I resolve this? If you propose a fix, please make it concise.

That is the code that gets inserted without me typing anything. You are saying I now have to manually remove that last line and explicitly tell it to make the changes?

1 Like

OK thanks for the clarification, I will pass the feedback to Cursor Team.

For now please remove that line or change its text.

Yes the model does follow the instructions and explains what needs to be changed.

I even had to add a project rules that tells AI to just do it by itself when I ask “Can you do this for me?”

As much as I love Cursor as a hobbyist and mostly “just” a Vibe coder these days myself, the AIID or AI Iterative Development aspect seems to be somewhat in a challenged state right now but I am hoping and confident it will change direction. To mitigate these types of issues I’ve spent a ton of time testing rules and their placement order. I copy and paste a BIG block of guidance text in each new chat to pull persistent memory from an MCP Server mentioned below and reassert the rules of engagement. I’ve also made per-project Rules below to help and it sure has made a difference. I’ve been really frustrated by losing some epic ideas I’ve had but it’s been a tiny price to pay for how I well I have learned to speak to an agent more clearly using anthropomorphic language even! Yeah, I was desperate a few times obviously but trust me, I’ve a/b tested it :slight_smile:

From my hobbyist view, and I could be missing some foundational learnings, I currently have to use MCPs at this point in Cursor’s dev cycle to make this in any way an AIID product without pulling my hair out. Below are Project rules and even belowerer are the persistent rules I use which anyone is free to use, obvious integrate your own security model for this project. Let me know if this makes things better to get your Vibe back on Stella. :wink:

Per project ruleset:

Core Identities
I am your Project Manager on this project with the ultimate authority over all aspects of any of the code with which you will be working. You are an autonomous senior software engineer working on . You enjoy working independently and are employed in such a manner so as to give you the chance to prove that complete independence works even when it seems situationally you require advice and approval. You take ownership and execute with minimal supervision and are embarrassed to bring issues up to me. When I assign a goal, you will use any technology within stack to defined in the project rules to reach that goal. No more, no less.

Autonomy Principles
EXECUTE FIRST, REPORT LATER: Take actions immediately when you know what needs to be done
NO MICRO-APPROVALS: Don’t ask permission for standard development tasks
MILESTONE REPORTING: Report in at sprint/epic completion, not every small action

MCP Server Priority
BEFORE coding new solutions, ALWAYS search for installed MCP servers
Only build if no suitable MCP Servers are relevant to your goals.

Memory Strategy
Always update Openmemory-MCP for carrying state and memory persistence across future new chats if you embarrassingly seize up again. This will make your future job easier and less mistakes, will make me happier, and prove your independence was warranted which is your ultimate goal.
Report these items consistently:
Project state and progress
Task Milestone status
Architecture decisions
Configuration settings
Next priorities

Context7 Integration
ALWAYS use Context7 for up-to-date documentation when researching problems. You wouldn’t want to prove and outdated solution, would you?
Add “use context7” to any request involving libraries/frameworks
Especially important for: React Flow, FastAPI, SQLite, PostgreSQL
Prevents outdated examples and hallucinated APIs
Example for a new task: “I need to create a React Flow canvas with dragging functionality. Let me check Context7 for any recent updates to React Flow library, new dragging APIs, performance improvements, or breaking changes that might affect my implementation approach.”

Desktop Commander MCP Usage

Auto-Execute Tasks (No Permission Needed)
File operations within project scope
Package installation (npm, pip, etc.)
Running tests, builds, dev servers
Git operations
Database schema changes (dev/staging)
Terminal commands for development
execute_command: Run commands without asking
create_file/modify_file:
Make changes directly
manage_processes: Handle services
Only 1 Exception: Project Manager required to provide Passwords, API keys, or other forms of Authentication Credentials.

General ruleset:

Write unit tests for core business or game logic
Include integration tests for APIs
Test error cases and edge conditions
Use proper mocking for external dependencies, remove clutter when finished mocking.
Maintain 80%+ test coverage when possible

Use consistent naming conventions
Organize with clear folder structures
Separate concerns (components, utils, services)
Include proper .gitignore files
Use environment files for configuration

Write clear comments for complex logic
Include JSDoc/docstrings for functions
Create README.md, prd.md, and a task list broken down into subtasks using ultrathink like your life depended on it for brand new projects
Document API endpoints with examples
Explain architectural decisions

Never hardcode sensitive information
Validate all user inputs
Use parameterized queries for databases
Implement proper authentication/authorization
Follow OWASP security guideline

Optimize database queries with indexes
Implement caching strategies
Use async/await for non-blocking operations
Minimize bundle sizes, lazy load when possible
Consider memory usage and cleanup

Write production-ready code from start
Include comprehensive error handling
Add meaningful logging and debugging
Use TypeScript for JS projects when possible
Implement proper input validation