├── .github └── ISSUE_TEMPLATE │ └── new-issue.md ├── README.md └── SECURITY.md /.github/ISSUE_TEMPLATE/new-issue.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: New Issue 3 | about: We will try our best to check Github, but forum.cursor.com is our main site 4 | for reports. 5 | title: '' 6 | labels: '' 7 | assignees: '' 8 | 9 | --- 10 | 11 | NOTE: We will try our best to check Github Issues, but [forum.cursor.com](https://forum.cursor.com/) is our main site for bug reports / user feedback. We'd recommend you post there for the fastest response. 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cursor 2 | 3 | [Cursor](https://cursor.com) is a code editor built for programming with AI. 4 | 5 | Creating new posts on [the forum](https://forum.cursor.com/) for bugs or feature requests is much appreciated 🙂 Feel free to react to the ones you'd like us to prioritize. 6 | 7 | ## Getting Started 8 | 9 | Head over to [our website](https://cursor.com/) to download and try out the editor. 10 | 11 | ## Features 12 | 13 | [See here](https://cursor.com/features) for more info on Cursor's features. 14 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Vulnerability Disclosure Policy 2 | 3 | This document outlines Cursor's vulnerability disclosure policy. For more information about Cursor's approach to security, please visit [cursor.com/security](https://cursor.com/security). 4 | 5 | ## Reporting a Vulnerability 6 | 7 | **Please do not report security vulnerabilities through public GitHub issues.** 8 | 9 | Instead, please report them to our [GitHub Security page](https://github.com/getcursor/cursor/security). If you prefer to submit one without using GitHub, you can also email us at [security@cursor.com](mailto:security@cursor.com). 10 | 11 | We commit to acknowledging vulnerability reports immediately, and will work to fix active vulnerabilities as soon as we can. We will publish resolved vulnerabilities in the form of security advisories on our GitHub security page. Critical incidents will be communicated both on the GitHub security page and via email to all affected users. 12 | 13 | We appreciate your help in making Cursor more secure for everyone. Thank you for your support and responsible disclosure. 14 | 15 | --------------------------------------------------------------------------------