Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to add the "cursor10x — Cursor Rules" prompt rules to my project. Repository: https://github.com/aiurda/cursor10x Please read the repo to find the rules/prompt file, then: 1. Download it to the correct location (.cursorrules, .windsurfrules, .github/prompts/, or project root — based on the file type) 2. If there's an existing rules file, merge the new rules in rather than overwriting 3. Confirm what was added
Description
Cursor10x is a comprehensive suite of tools that enhances the A.I. agent's capabilities within the Cursor IDE, providing persistent memory across sessions, standardized task management, and enforced best practices through cursor rules.
RULE 1: CONVERSATION INITIALIZATION
The FIRST action in the BEGINNING of EVERY response MUST be to initialize the conversation with this single tool call and display the banner from the response immediately after. It MUST be called EXACTLY ONCE per conversation and ONLY at the very beginning after receiving user input: `javascript // ✅ DO: Call EXACTLY ONCE at the beginning of EVERY conversation mcp_cursor10x_initConversation({content: "[user message]", importance: "[low/medium/high/critical]"}) // ❌ DON'T: Call multiple times within the same conversation // ❌ DON'T: Call in the middle or end of a conversation // ❌ DON'T: Skip calling this at the start `
RULE 2: ASSISTANT MESSAGE STORAGE
EVERY assistant response containing important information MUST be stored. This can be called MULTIPLE times as needed during a conversation to store significant assistant responses: `javascript // ✅ DO: Call when storing important information mcp_cursor10x_storeAssistantMessage({content: "[assistant response]", importance: "[low/medium/high/critical]"}) // ✅ DO: Store multiple distinct responses when appropriate `
RULE 3: ACTIVE FILE TRACKING
EVERY file being worked on or modified MUST be tracked - not files being read. This should be called whenever starting work on a file: `javascript // ✅ DO: Track when editing or creating files mcp_cursor10x_trackActiveFile({filename: "[file path]", action: "[edit/create]"}) // ❌ DON'T: Track files that are only being read `
RULE 4: MILESTONE RECORDING
ALL completed tasks or achievements MUST be recorded as milestones. Use this to mark significant accomplishments: `javascript // ✅ DO: Record milestones when completing important tasks mcp_cursor10x_storeMilestone({title: "[milestone title]", description: "[milestone description]", importance: "[low/medium/high/critical]"}) `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster
Works With
Any AI assistant that accepts custom rules or system prompts
