A community-driven platform for discovering and sharing your favorite Cursor commands and tips.
Cursor Tips is the home for Cursor enthusiasts to share their favorite commands, workflows, and productivity tips with the community. Browse commands submitted by other users or contribute your own to help others get more out of Cursor.
- Node.js 18+
- npm
- Clone the repository:
git clone https://github.com/WillGarman/cursor-tips.git
cd cursor-tips- Install dependencies:
npm install- Run the development server:
npm run dev- Open http://localhost:3000 to see the app.
We welcome contributions from the community! To add your own command:
Fork this repository and clone it locally.
Open lib/commands.ts and add your command to the commands array:
export interface Command {
authorXHandle: string; // Your X (Twitter) handle without the @
command: string; // A short slug/identifier for the command
name: string; // Display name for the command
body: string; // The full command content in markdown format
}{
authorXHandle: "ericzakariasson",
command: "deslop",
name: "Remove AI code slop",
body: "# Remove AI code slop\n\nCheck the diff against main, and remove all AI generated slop introduced in this branch.\n\nThis includes:\n- Extra comments that a human wouldn't add or is inconsistent with the rest of the file\n- Extra defensive checks or try/catch blocks that are abnormal for that area of the codebase (especially if called by trusted / validated codepaths)\n- Casts to any to get around type issues\n- Any other style that is inconsistent with the file\n\nReport at the end with only a 1-3 sentence summary of what you changed",
}- Commit your changes with a descriptive message
- Push to your fork
- Open a Pull Request to the main repository
- Be descriptive: Include clear instructions on what the command does
- Use markdown: The
bodyfield supports markdown formatting - Keep it useful: Focus on commands that genuinely help other Cursor users
- Test it: Make sure your command works as expected before submitting
This project is open source and available under the MIT License.