Feature request for product/service
Cloud Agent (GitHub, Slack, Linear,…)
Describe the request
I’d like the ability to tag a Cursor agent directly in a GitHub PR comment — including on closed/merged PRs — and have it automatically spin up, understand the context, create a new branch, apply the fix, and open a new PR.
Real-world example: After a PR is merged, I notice in a comment thread that a field is being read from the wrong place (e.g., req.query instead of req.body). Right now I have to manually re-describe the issue inside Cursor, reconstruct all the context, and then ask the agent to branch and fix it. This breaks flow.
What I want:
- Tag @cursor-agent in any PR comment (open or closed) with a short instruction like: “fix this: read from req.body.userId, validate as string, create a new branch + PR”
- The agent reads the comment, the diff, and the current repo state
- It creates a new branch (e.g. fix/field-source-userId), applies the fix, runs tests, and opens a new PR referencing the original comment
Why it matters:
- Issues are often caught late, during review or after merge
- Re-describing bugs inside Cursor wastes time and loses context
- This turns PR comments into actionable tasks without switching tools
Possible implementation:
- A “Send to Agent” button next to each PR comment via GitHub integration / MCP
- Support for @cursor-agent mention syntax in PR comments
- Configurable branch naming, base branch, and required checks before pushing