Cannot start an automation from a template - 404 on all template URLs

Where does the bug appear (feature/product)?

Somewhere else…

Describe the Bug

I’m trying to create a new Cursor automation from a template but I get a 404 error on every template URL. The URL contains the team prefix /t/<team-id>/ which causes the 404. If I manually remove the team prefix and navigate to /automations/new?templateId=... the template opens fine. I tried at least 3 different templates and all of them returned the same 404 page.

Steps to Reproduce

  1. Open Cursor web app (cursor.com) and sign in as [email protected]
  2. Navigate to Automations (agents view)
  3. Click on any predefined automation template (e.g. ‘find vulnerabilities’ or any other)
  4. The browser navigates to a URL like: https://cursor.com/t//automations/new?templateId=… and shows a 404 page
  5. Tried multiple templates - all return the same 404

Operating System

MacOS

Version Information

web browser

Does this stop you from using Cursor

Yes - Cursor is unusable

Hi Luisa, sorry for the friction here. You’re right that these template links should not 404, and the /t/<team-id>/ prefix appears to be the issue.

We’ve reproduced this and are tracking a fix internally. In the meantime, the workaround is to remove the team prefix from the URL while keeping the templateId query parameter.

For example, for the “Find vulnerabilities” template, this should work:

https://cursor.com/automations/new?templateId=find-vulnerabilities

More generally, if Cursor sends you to a URL like:

https://cursor.com/t/<team-id>/automations/new?templateId=...

change it to:

https://cursor.com/automations/new?templateId=...

Thanks for reporting this, and sorry again for the interruption.

@kevinn thank you! the issue was fixed on my side.