You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhance README.md with Cursor Rules integration details
- Added section on Cursor Rules for improved AI coding assistance.
- Included clean code guidelines, enhanced AI understanding, and standardized patterns for MCP server implementation.
description: Guidelines for writing clean, maintainable, and human-readable code. Apply these rules when writing or reviewing code to ensure consistency and quality.
8
+
globs:
9
+
---
10
+
# Clean Code Guidelines
11
+
12
+
## Constants Over Magic Numbers
13
+
- Replace hard-coded values with named constants
14
+
- Use descriptive constant names that explain the value's purpose
15
+
- Keep constants at the top of the file or in a dedicated constants file
16
+
17
+
## Meaningful Names
18
+
- Variables, functions, and classes should reveal their purpose
19
+
- Names should explain why something exists and how it's used
Copy file name to clipboardExpand all lines: README.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,16 @@ This template provides a streamlined foundation for building Model Context Proto
15
15
- Minimal dependencies
16
16
-**Embedded MCP specifications and documentation** for improved AI tool understanding
17
17
18
+
## Cursor Rules Integration
19
+
20
+
This project uses Cursor Rules for improved AI coding assistance, with patterns from [Awesome Cursor Rules](https://github.com/PatrickJS/awesome-cursorrules).
21
+
22
+
-**Clean Code Guidelines**: Built-in clean code rules help maintain consistency and quality
23
+
-**Enhanced AI Understanding**: Rules provide context that helps AI assistants generate better code
24
+
-**Standardized Patterns**: Follow established best practices for MCP server implementation
25
+
26
+
Cursor Rules help both AI coding assistants and human developers maintain high code quality standards and follow best practices.
27
+
18
28
## Integrated MCP Documentation
19
29
20
30
This template includes comprehensive MCP documentation directly in the project:
0 commit comments