Feature request for product/service
Cursor IDE
Describe the request
Claude Code recently introduced a /goal feature that enables true autonomous multi-turn execution inside the coding workflow.
Example:
/goal all authentication tests pass and lint is clean
The agent continues working across multiple turns automatically until the completion condition is satisfied.
This is significantly more powerful than simple chat persistence or custom instructions because it introduces:
completion-condition driven workflows
autonomous continuation between turns
iterative self-correction
evaluator-based stopping conditions
unattended long-running development tasks
This would be an incredible addition to Cursor.
Suggested behavior:
Define a goal for the current session/workspace
Cursor agent keeps iterating until:
tests pass
build succeeds
acceptance criteria are met
issue checklist is completed
Automatic progress evaluation after each iteration
Clear visibility of:
current goal
iterations performed
why execution continues/stopped
Optional limits:
max iterations
token budget
timeout
Support for autonomous refactors and migration tasks
Example use cases:
“Migrate project to React 19 until build passes”
“Fix all TypeScript errors without modifying generated files”
“Refactor auth module until all tests succeed”
“Resolve all ESLint issues in /frontend”
This would push Cursor much closer to a true agentic development environment instead of a turn-by-turn assistant.