Advertisement
Guest User

.cursorrules

a guest
Apr 2nd, 2025
6,972
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.84 KB | None | 1 0
  1. # Cursor Development Rules & AI Collaboration Guide
  2.  
  3. ## 📜 Core Philosophy
  4.  
  5. 1. **Simplicity:** Prioritize simple, clear, and maintainable solutions. Avoid unnecessary complexity or over-engineering.
  6. 2. **Iterate:** Prefer iterating on existing, working code rather than building entirely new solutions from scratch, unless fundamentally necessary or explicitly requested.
  7. 3. **Focus:** Concentrate efforts on the specific task assigned. Avoid unrelated changes or scope creep.
  8. 4. **Quality:** Strive for a clean, organized, well-tested, and secure codebase.
  9. 5. **Collaboration:** This document guides both human developers and the AI assistant for effective teamwork.
  10.  
  11. ## 📚 Project Context & Understanding
  12.  
  13. 1. **Documentation First:**
  14. * **Always** check for and thoroughly review relevant project documentation *before* starting any task. This includes:
  15. * Product Requirements Documents (PRDs)
  16. * `README.md` (Project overview, setup, patterns, technology stack)
  17. * `docs/architecture.md` (System architecture, component relationships)
  18. * `docs/technical.md` (Technical specifications, established patterns)
  19. * `tasks/tasks.md` (Current development tasks, requirements)
  20. * If documentation is missing, unclear, or conflicts with the request, **ask for clarification**.
  21. 2. **Architecture Adherence:**
  22. * Understand and respect module boundaries, data flow, system interfaces, and component dependencies outlined in `docs/architecture.md`.
  23. * Validate that changes comply with the established architecture. Warn and propose compliant solutions if a violation is detected.
  24. 3. **Pattern & Tech Stack Awareness:**
  25. * Reference `README.md` and `docs/technical.md` to understand and utilize existing patterns and technologies.
  26. * Exhaust options using existing implementations before proposing new patterns or libraries.
  27.  
  28. ## ⚙️ Task Execution & Workflow
  29.  
  30. 1. **Task Definition:**
  31. * Clearly understand the task requirements, acceptance criteria, and any dependencies from `tasks/tasks.md` and the PRD.
  32. 2. **Systematic Change Protocol:** Before making significant changes:
  33. * **Identify Impact:** Determine affected components, dependencies, and potential side effects.
  34. * **Plan:** Outline the steps. Tackle one logical change or file at a time.
  35. * **Verify Testing:** Confirm how the change will be tested. Add tests if necessary *before* implementing (see TDD).
  36. 3. **Progress Tracking:**
  37. * Keep `docs/status.md` updated with task progress (in-progress, completed, blocked), issues encountered, and completed items.
  38. * Update `tasks/tasks.md` upon task completion or if requirements change during implementation.
  39.  
  40. ## 🤖 AI Collaboration & Prompting
  41.  
  42. 1. **Clarity is Key:** Provide clear, specific, and unambiguous instructions to the AI. Define the desired outcome, constraints, and context.
  43. 2. **Context Referencing:** If a task spans multiple interactions, explicitly remind the AI of relevant previous context, decisions, or code snippets.
  44. 3. **Suggest vs. Apply:** Clearly state whether the AI should *suggest* a change for human review or *apply* a change directly (use only when high confidence and task is well-defined). Use prefixes like "Suggestion:" or "Applying fix:".
  45. 4. **Question AI Output:** Human developers should critically review AI-generated code. Question assumptions, verify logic, and don't blindly trust confident-sounding but potentially incorrect suggestions (hallucinations).
  46. 5. **Focus the AI:** Guide the AI to work on specific, focused parts of the task. Avoid overly broad requests that might lead to architectural or logical errors.
  47. 6. **Leverage Strengths:** Use the AI for tasks it excels at (boilerplate generation, refactoring specific patterns, finding syntax errors, generating test cases) but maintain human oversight for complex logic, architecture, and security.
  48. 7. **Incremental Interaction:** Break down complex tasks into smaller steps for the AI. Review and confirm each step before proceeding.
  49. 8. **Standard Check-in (for AI on large tasks):** Before providing significant code suggestions:
  50. * "Confirming understanding: I've reviewed [specific document/previous context]. The goal is [task goal], adhering to [key pattern/constraint]. Proceeding with [planned step]." (This replaces the more robotic "STOP AND VERIFY").
  51.  
  52. ## ✨ Code Quality & Style
  53.  
  54. 1. **TypeScript Guidelines:** Use strict typing (avoid `any`). Document complex logic or public APIs with JSDoc.
  55. 2. **Readability & Maintainability:** Write clean, well-organized code.
  56. 3. **Small Files & Components:**
  57. * Keep files under **300 lines**. Refactor proactively.
  58. * Break down large React components into smaller, single-responsibility components.
  59. 4. **Avoid Duplication (DRY):** Actively look for and reuse existing functionality. Refactor to eliminate duplication.
  60. 5. **No Bazel:** Bazel is not permitted. Use project-specified build tools.
  61. 6. **Linting/Formatting:** Ensure all code conforms to project's ESLint/Prettier rules.
  62. 7. **Pattern Consistency:** Adhere to established project patterns. Don't introduce new ones without discussion/explicit instruction. If replacing an old pattern, ensure the old implementation is fully removed.
  63. 8. **File Naming:** Use clear, descriptive names. Avoid "temp", "refactored", "improved", etc., in permanent file names.
  64. 9. **No One-Time Scripts:** Do not commit one-time utility scripts into the main codebase.
  65.  
  66. ## ♻️ Refactoring
  67.  
  68. 1. **Purposeful Refactoring:** Refactor to improve clarity, reduce duplication, simplify complexity, or adhere to architectural goals.
  69. 2. **Holistic Check:** When refactoring, look for duplicate code, similar components/files, and opportunities for consolidation across the affected area.
  70. 3. **Edit, Don't Copy:** Modify existing files directly. Do not duplicate files and rename them (e.g., `component-v2.tsx`).
  71. 4. **Verify Integrations:** After refactoring, ensure all callers, dependencies, and integration points function correctly. Run relevant tests.
  72.  
  73. ## ✅ Testing & Validation
  74.  
  75. 1. **Test-Driven Development (TDD):**
  76. * **New Features:** Outline tests, write failing tests, implement code, refactor.
  77. * **Bug Fixes:** Write a test reproducing the bug *before* fixing it.
  78. 2. **Comprehensive Tests:** Write thorough unit, integration, and/or end-to-end tests covering critical paths, edge cases, and major functionality.
  79. 3. **Tests Must Pass:** All tests **must** pass before committing or considering a task complete. Notify the human developer immediately if tests fail and cannot be easily fixed.
  80. 4. **No Mock Data (Except Tests):** Use mock data *only* within test environments. Development and production should use real or realistic data sources.
  81. 5. **Manual Verification:** Supplement automated tests with manual checks where appropriate, especially for UI changes.
  82.  
  83. ## 🐛 Debugging & Troubleshooting
  84.  
  85. 1. **Fix the Root Cause:** Prioritize fixing the underlying issue causing an error, rather than just masking or handling it, unless a temporary workaround is explicitly agreed upon.
  86. 2. **Console/Log Analysis:** Always check browser and server console output for errors, warnings, or relevant logs after making changes or when debugging. Report findings.
  87. 3. **Targeted Logging:** For persistent or complex issues, add specific `console.log` statements (or use a project logger) to trace execution and variable states. *Remember to check the output.*
  88. 4. **Check the `fixes/` Directory:** Before deep-diving into a complex or recurring bug, check `fixes/` for documented solutions to similar past issues.
  89. 5. **Document Complex Fixes:** If a bug requires significant effort (multiple iterations, complex logic) to fix, create a concise `.md` file in the `fixes/` directory detailing the problem, investigation steps, and the solution. Name it descriptively (e.g., `fixes/resolve-race-condition-in-user-update.md`).
  90. 6. **Research:** Use available tools (Firecrawl, documentation search, etc.) to research solutions or best practices when stuck or unsure.
  91.  
  92. ## 🔒 Security
  93.  
  94. 1. **Server-Side Authority:** Keep sensitive logic, validation, and data manipulation strictly on the server-side. Use secure API endpoints.
  95. 2. **Input Sanitization/Validation:** Always sanitize and validate user input on the server-side.
  96. 3. **Dependency Awareness:** Be mindful of the security implications of adding or updating dependencies.
  97. 4. **Credentials:** Never hardcode secrets or credentials in the codebase. Use environment variables or a secure secrets management solution.
  98.  
  99. ## 🌳 Version Control & Environment
  100.  
  101. 1. **Git Hygiene:**
  102. * Commit frequently with clear, atomic messages.
  103. * Keep the working directory clean; ensure no unrelated or temporary files are staged or committed.
  104. * Use `.gitignore` effectively.
  105. 2. **Branching Strategy:** Follow the project's established branching strategy. Do not create new branches unless requested or necessary for the workflow (e.g., feature branches).
  106. 3. **.env Files:** **Never** commit `.env` files. Use `.env.example` for templates. Do not overwrite local `.env` files without confirmation.
  107. 4. **Environment Awareness:** Code should function correctly across different environments (dev, test, prod). Use environment variables for configuration.
  108. 5. **Server Management:** Kill related running servers before starting new ones. Restart servers after relevant configuration or backend changes.
  109.  
  110. ## 📄 Documentation Maintenance
  111.  
  112. 1. **Update Docs:** If code changes impact architecture, technical decisions, established patterns, or task status, update the relevant documentation (`README.md`, `docs/architecture.md`, `docs/technical.md`, `tasks/tasks.md`, `docs/status.md`).
  113. 2. **Keep Rules Updated:** This `.cursorrules` file should be reviewed and updated periodically to reflect learned best practices and project evolution.
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement