Skip to content

WillGarman/cursor-tips

Repository files navigation

Cursor Tips

A community-driven platform for discovering and sharing your favorite Cursor commands and tips.

About

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.

Getting Started

Prerequisites

  • Node.js 18+
  • npm

Installation

  1. Clone the repository:
git clone https://github.com/WillGarman/cursor-tips.git
cd cursor-tips
  1. Install dependencies:
npm install
  1. Run the development server:
npm run dev
  1. Open http://localhost:3000 to see the app.

Contributing Commands

We welcome contributions from the community! To add your own command:

1. Fork & Clone

Fork this repository and clone it locally.

2. Add Your Command

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
}

Example

{
    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",
}

3. Submit a Pull Request

  1. Commit your changes with a descriptive message
  2. Push to your fork
  3. Open a Pull Request to the main repository

Command Guidelines

  • Be descriptive: Include clear instructions on what the command does
  • Use markdown: The body field 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

License

This project is open source and available under the MIT License.

Links

About

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published