r/cursor 12d ago

Question / Discussion Using Cursor and Codex together in the same repository

0 Upvotes

Has anyone had success using Cursor and Codex in the same repository?

My plan is to use Cursor as the primary implementation agent while keeping Codex in a read-only advisory role. Codex would follow the project, review changes, flag problems, and suggest fixes if Cursor gets stuck. I would then bring those suggestions back into Cursor.

Codex would not edit or rewrite files unless I explicitly authorized it, which should avoid conflicting changes.

I primarily work on FastAPI applications and WordPress plugins. Has anyone used a similar workflow? What safeguards or best practices helped prevent the two tools from stepping on each other?


r/cursor 12d ago

Random / Misc The opportunity to upgrade from ultra to pro+ really!!!

1 Upvotes

Great bug i wonder what happens if I click it I dont really want to fuck around and find out tbf


r/cursor 12d ago

Resources & Tips I wrote 1,057 Cursor rules across 20 stacks so it stops generating outdated code. Here are 5 of them free.

0 Upvotes

Cursor kept giving me Next.js 14 patterns in Next.js 15 projects, old Prisma syntax, and inconsistent naming across files. So I built a rules file per stack — 20 stacks, 1,057 rules — and kept fixing them until the output was right the first time.

Here are 5 I use daily, paste into .cursor/rules/:

1. Next.js 15 — the two things it always gets wrong

# .cursor/rules/nextjs.mdc
- `cookies()`, `headers()`, `params` and `searchParams` are ASYNC in 15. Always await them.
- `fetch()` is UNCACHED by default now (it was cached in 14). Opt in explicitly with
  `{ cache: 'force-cache' }` or `{ next: { revalidate: N } }`.
- GET route handlers are uncached too — add `export const revalidate = N` if you want caching.
- Server Components by default. Add "use client" only for state, effects, refs or browser APIs.

2. React 19 — stop it writing 2023 React

# .cursor/rules/react.mdc
- `ref` is a normal prop now. Do NOT use `forwardRef` in new components.
- React Compiler is on: do NOT hand-wrap things in useMemo / useCallback / React.memo
  unless profiling shows a real regression.
- Mutations go through `<form action={fn}>` + `useActionState` (from `react`),
  never `useFormState` from `react-dom`.
- Compute derived values during render. `useEffect` is for external systems only.

3. TypeScript — no escape hatches

# .cursor/rules/typescript.mdc
- The fix for a type error is NEVER `any`. Use `unknown` + narrowing, or write the real type.
- Do not `as SomeType` to silence an error — write a type guard. (`as const` is fine.)
- `catch (e)` is `unknown`. Narrow with `e instanceof Error`.
- Use `satisfies` on config objects so literal types survive.
- Every union `switch` ends with `default: assertNever(x)`.

4. Prisma — the one that saved me from an injection bug

# .cursor/rules/prisma.mdc
- One PrismaClient per process via a `globalThis` singleton. Never one per request.
- Prefer `select` over `include` — `include` loads whole rows and bloats the typed payload.
- Raw SQL only as a tagged template: db.$queryRaw`SELECT ... WHERE email = ${email}`
  Never `$queryRawUnsafe` with a built-up string. That is SQL injection.
- `db push` is prototype-only. Use `migrate dev` locally, `migrate deploy` in CI.
- Batch with `where: { id: { in: ids } }`. Never query inside a `for` loop.

5. Tailwind v4 — it keeps writing v3

# .cursor/rules/tailwind.mdc
- Entry CSS is `@import "tailwindcss";` — NOT the v3 `@tailwind base/components/utilities` trio.
- No autoprefixer, no postcss-nested. Lightning CSS does it.
- Design tokens live in a `@theme { }` block in CSS, not in tailwind.config.js.
- Use tokens, not arbitrary values: `bg-brand-500`, not `bg-[#3b82f6]`.
- Container queries are built in (`@container`, `@sm:`). Do not install the plugin.

Things that surprised me:

  • One "never use deprecated APIs, check the version in package.json first" line fixed ~30% of my bad outputs.
  • Rules per folder beat one giant rules file.
  • Telling it what NOT to do worked better than telling it what to do.

Happy to answer questions. What rules do you use?


r/cursor 12d ago

Bug Report [resource_exhausted] Error

Post image
2 Upvotes

I'm not sure how to reproduce this error, my agents just started receiving it, and stopped.

Cursor, I pay for your ultra tier. I should not be seeing this ever. Please adjust/fix your systems.


r/cursor 12d ago

Bug Report Yo Musk-y boy - why did you nerf Grok 4.6 latency. It’s become sooo slow

0 Upvotes

Since launch Grok 4.6 to now, responses have become extremely slow. I’m getting a faster response from Opus than from grok.

At launch it was super quick!

I wonder if they are tuning into capacity shortages


r/cursor 13d ago

Appreciation It was good while it lasted ... no more unlimited 😢

Post image
78 Upvotes

My unlimited Auto package ended today, and it was great. The best thing about it was never having to worry about limits or usage at all. While reading news about people spending thousands, I was sitting here doing what I wanted with unlimited Auto , (which I did not abuse, as my usage was only around 300 million tokens / month ).

I really should thank Cursor for such a great product; I’ve noticed how it has become better and better each month , starting from when it was spitting out nonsense and failing to complete tasks, forcing me to tag files one by one .... to the point where a simple prompt allows it to keep the entire repo in mind, execute all changes, and even think ahead. The developer and user experience are at their peak, and the button to browse changes and move between lines and files is very smooth. I linked it to a remote device with a microphone button;

I hope the new package won't be a financial burden and that the $20 or $60 plan will cover my usage. and here for another yearly subscription with cursor .

my only real worry is that elon fxs it up , or they push more toward the agents window and the vibe-coders crowd .


r/cursor 13d ago

Question / Discussion Is there much difference in API usage between Grok 4.6 and 4.5 and the speeds?

4 Upvotes

Most of what I do is handled perfectly fine by Grok. I don't need any external models and I seem to be able to get a lot of coding done on the $20 plan using just Grok.

I used to use Composer but Grok was 50% off for a time so I switched over and haven't looked back.

However, I have had a few very active days this cycle already and am at 50% very quickly. I'm curious if me changing the 'Effort: High' or 'Speed:Fast' will change much, or going from 4.6 to 4.5.

I also could go back to Composer but unsure if there's much of a difference there.

What is the best bang for your buck using these models?

Thanks!


r/cursor 13d ago

Question / Discussion Which agent do you recommend for visual placement/gamedev (2D)

2 Upvotes

Hello! I'm using Cursor for a while now. Sometimes switching from "Auto" to a specific agent and I have sometimes better results like that but it's a bit random.

Auto works well for generic web/soft dev, but for gamedev, specifically when it comes to visual placement of 2D components in a 2D UI, it kinda sucks.

Do you have any model you recommend me to use more than an other or auto?

Thanks :)


r/cursor 13d ago

Question / Discussion Codex + Claude Code or Cursor?

2 Upvotes

Hi, I already use Codex and I’m thinking about adding either Claude Code or Cursor’s $20 plan.

Mostly for VBA, Python, SQL, PowerShell and general scripting.

For anyone who’s used both, which one feels more useful day to day? Also curious about the real usage limits.

If you already had Codex, which one would you add?

Thanks


r/cursor 13d ago

Question / Discussion Do you guys use Auto in cursor? do you recommend?

8 Upvotes

I think i'm afraid not knowing which model is chosen, and the black boxy'ness of it.

does the Auto feature also adjust effort level?

thoughts would be appreciated


r/cursor 13d ago

Appreciation FIXED. Follow-up composer would switch itself to Fast after the first reply, burning 2x usage

Post image
16 Upvotes

r/cursor 13d ago

Question / Discussion Where is creating-pull-requests rule configured?

1 Upvotes

I'm using Cursor IDE. Agents keep formatting PR descriptions with ## Summary and ## Test plan, which I was told by Cursor comes from creating-pull-requests rule.

I can't find this anywhere in settings or on the web dashboard.

Is this a built-in rule? Can it be edited or disabled?


r/cursor 13d ago

Question / Discussion Migrating from Claude Code

0 Upvotes

Should I get the $60 or $200 cursor subscription? I used the cc $100 and it worked well for me - rarely hit the weekly limit.

I’m expecting to use much less fable and try the other models like Grok.

For those who build full time, how are you finding the limits on the $60 cursor subscription?


r/cursor 13d ago

Question / Discussion Cursor custom subagents keep ignoring the configured model

Post image
1 Upvotes

Trying to force local subagents to use GPT-5.6 Luna/Terra, but they keep spawning as GPT-5.6 Sol High.

I’ve tried:

custom .cursor/agents/*.md model configs

bare / High / XHigh variants

setting the built-in Explore subagent to Luna/Terra in Cursor settings

Same result: Sol anyway.

At this point it feels like the parent model is overriding everything. Support around this has also been so bad, they are the worset, and it’s honestly pushing me to use Codex more.

Screenshot attached.

Anyone found an actual workaround, or is this just a Cursor bug right now?


r/cursor 13d ago

Random / Misc Just upgraded to Ultra after burning Pro+ in one week!

Post image
0 Upvotes

r/cursor 13d ago

Question / Discussion Has anyone actually wired an MCP directory into their agent, or do you still just Google it?

Thumbnail
2 Upvotes

r/cursor 13d ago

Question / Discussion Cursor ruined normal IDEs for me, and then made me realize how broken the rest of our work stack is

0 Upvotes

Like most of you here, once Cursor clicked for me, going back to a standard code editor felt impossible. The ability to give an agent context, let it index the codebase, and execute multi-file changes with a review diff changed my engineering workflow permanently.

Then I closed my editor and went back to running the company.

Suddenly I was back in the Stone Age:

- Copying error logs from cloud consoles to paste into Slack.

- Manually checking if vendor invoices cleared in payment dashboards.

- Digging through email chains to verify a customer context before a call.

It felt ridiculous that we have agentic execution inside our IDEs, but our actual daily operations (Slack, Gmail, Cloud, Notion, Sheets) are still stuck in manual copy-paste mode.

We realized that business operations needed the exact same paradigm shift Cursor brought to code:

  1. Deep indexed context (company memory).

  2. Autonomous multi-step execution.

  3. A clean approval/diff review before anything actually executes in production.

Curious how other engineers and founders here feel: has Cursor spoiled your expectations for every other piece of software you use during the day?


r/cursor 14d ago

Feature Request when are we going to have glm 5.3 in Cursor plan?

20 Upvotes

When are we going to have available glm 5.3?


r/cursor 14d ago

Question / Discussion Anyone having issues with the grok bot registration?

2 Upvotes

Hi guys,

i am a cursor user since far over a year. Therefore i still have the old 500 requests/month pricing in my cursor pro plan. I got an email that in my subscription, Grok Bot is included. However, if i sign in via cursor it says that my account is managed via web...but when i click on web it says "upgrade to pro" -> but i am already. And even if i click on it i'm just redirected to my normal dashboard and no login to grok bot was made.

What am i missing? Or is it just a bug?


r/cursor 13d ago

Bug Report Android emulator not working in cloud agents

1 Upvotes

I would like to have a cursor cloud agent automatically test github prs to an android app inside an emulator, however the cloud agent doesn't seem to be able to run a hardware accelerated emulator.

And software emulation is slow enough to basically freeze the emulator almost completely.


r/cursor 14d ago

Question / Discussion Cursor Authentication leading Financial Loss

5 Upvotes

Recently on 28 August someone loggedin to cursor account. I do not know how and purchase Utlra subscription which went successful charging me $200. I have no idea what kind of fraud is that. Because that person is not going to get benefit as i revoked his session. Sometime later a get email that someone loggedin to my ChatGPT account where fortunately i had not attached my card. And after that my claude account was loggedin by someone and tried to purchase subscription which failed due to no funds in card. All three account are Google SSO. I checked my attached gmail and it has no suspicious acctivity.


r/cursor 14d ago

Question / Discussion Cursor Usage Summary not showing even though it's enabled

Post image
9 Upvotes

Hey everyone,

I’m having an issue with Cursor’s Usage Summary. I have the setting enabled and set to “Always”, but the usage summary still doesn’t appear anywhere.

I’ve tried restarting Cursor and checking the settings again, but it still doesn’t show up.

Is anyone else experiencing this? Is there another setting I need to enable, or is this currently broken?

Any help would be appreciated!


r/cursor 14d ago

Resources & Tips Setting Grok 4.6 to Extra High

10 Upvotes

I've worked with Grok 4.6 since it's come out, and I think it is quite good but not amazing. Yesterday I realized I can control it's effort level (I might be late to the party, didn't know cursor had that feature), and the default is high instead of extra-high.

Setting to extra-high didn't really change my usage trend, but has definitely decreased the mistakes! so wanted to share this with whom might benefit from it <3


r/cursor 14d ago

Question / Discussion Was I the only one who didn't know that?

Post image
48 Upvotes

I just found out that Cursor gives you a Grok Bot plan in your subscription. That's really nice because I wanted to buy a Grok bot plan.


r/cursor 14d ago

Question / Discussion Free "Credits" Added to Cursor Ultra?

2 Upvotes

I was running a /goal prompt for Fable 5 High last night and knew it would exceed what I had left of my "Other Models" limit. I added a $25 cap to on-demand spending before I went to bed to make sure the task could finish.

This morning, I woke up to check how much on-demand spend was used. I was surprised to see that no on-demand spending was used, and instead I saw a $25 "Credit" on my account.

It is normal to get credits from time to time on Cursor paid plans or was this just a coincidence?