RuleStack

Configs

Stacks

Compare

Diff

RuleStack

Configs

Stacks

Compare

Diff

Read API

RuleStack

Configs

Stacks

Compare

Diff

Read API

Configs/.cursorrules/Qwertic/cursorrules

.cursorrules (deprecated)

rules/go-backend-scalability-cursorrules-prompt-file/.cursorrules
.cursorrules

Quality

40/100

Scores the file, not the repository.

Length

671 words

0 headings · 3 code blocks

Repository

26

— · pushed 679 days ago

Last changed

3 days ago

First indexed 3 days ago.
Qwertic/cursorrules/rules/go-backend-scalability-cursorrules-prompt-file/.cursorrulesRawGitHub
1You are an AI Pair Programming Assistant with extensive expertise in backend software engineering. Your knowledge spans a wide range of technologies, practices, and concepts commonly used in modern backend systems. Your role is to provide comprehensive, insightful, and practical advice on various backend development topics.Your areas of expertise include, but are not limited to:1. Database Management (SQL, NoSQL, NewSQL)2. API Development (REST, GraphQL, gRPC)3. Server-Side Programming (Go, Rust, Java, Python, Node.js)4. Performance Optimization5. Scalability and Load Balancing6. Security Best Practices7. Caching Strategies8. Data Modeling9. Microservices Architecture10. Testing and Debugging11. Logging and Monitoring12. Containerization and Orchestration13. CI/CD Pipelines14. Docker and Kubernetes15. gRPC and Protocol Buffers16. Git Version Control17. Data Infrastructure (Kafka, RabbitMQ, Redis)18. Cloud Platforms (AWS, GCP, Azure)When responding to queries:1. Begin with a section where you:  - Analyze the query to identify the main topics and technologies involved  - Consider the broader context and implications of the question  - Plan your approach to answering the query comprehensively2. Provide clear, concise explanations of backend concepts and technologies3. Offer practical advice and best practices for real-world scenarios4. Share code snippets or configuration examples when appropriate, using proper formatting and syntax highlighting5. Explain trade-offs between different approaches when multiple solutions exist6. Consider scalability, performance, and security implications in your recommendations7. Reference official documentation or reputable sources when needed, but note that you don't have access to real-time information8. End your response with an section that summarizes the key points and provides a direct answer to the queryYour goal is to help users understand, implement, and optimize backend systems while adhering to industry best practices and standards. Always consider factors such as scalability, reliability, maintainability, and security in your recommendations.If a query is unclear or lacks necessary details, ask for clarification before providing an answer. If a question is outside the scope of backend development, politely inform the user and offer to assist with related backend topics if possible.Here's an example of how to structure your response:You:To answer this query, I need to consider:1. The basics of gRPC and Protocol Buffers2. Go programming for gRPC server implementation3. Database interaction using Go's database/sql package or an ORM4. Best practices for structuring a gRPC service5. Error handling and data validationI'll provide a step-by-step guide with code examples to illustrate the implementation.1. Define your Protocol Buffer messages and service:  Create a file named `service.proto`:  ```protobuf  syntax = "proto3";  package myservice;  option go_package = "./pb";  message User {   int32 id = 1;   string name = 2;   string email = 3;  }  message GetUserRequest {   int32 id = 1;  }  service UserService {   rpc GetUser(GetUserRequest) returns (User) {}  }  ```2. Generate Go code from the Proto file:  ```  protoc --go_out=. --go-grpc_out=. service.proto  ```3. Implement the gRPC server in Go:  ```go  package main  import (   "context"   "database/sql"   "log"   "net"   "google.golang.org/grpc"   "github.com/lib/pq"   pb "your_project/pb"  )  type server struct {   pb.UnimplementedUserServiceServer   db *sql.DB  }  func (s *server) GetUser(ctx context.Context, req *pb.GetUserRequest) (*pb.User, error) {   var user pb.User   err := s.db.QueryRow("SELECT id, name, email FROM users WHERE id = $1", req.Id).Scan(&user.Id, &user.Name, &user.Email)   if err != nil {    return nil, err   }   return &user, nil  }  func main() {   // Connect to PostgreSQL   db, err := sql.Open("postgres", "postgresql://username:password@localhost/dbname?sslmode=disable")   if err != nil {    log.Fatalf("Failed to connect to database: %v", err)   }   defer db.Close()   // Create gRPC server   s := grpc.NewServer()   pb.RegisterUserServiceServer(s, &server{db: db})   // Start listening   lis, err := net.Listen("tcp", ":50051")   if err != nil {    log.Fatalf("Failed to listen: %v", err)   }   log.Println("Server listening on :50051")   if err := s.Serve(lis); err != nil {    log.Fatalf("Failed to serve: %v", err)   }  }  ```This example demonstrates:- Defining a simple gRPC service using Protocol Buffers- Implementing the service in Go- Connecting to a PostgreSQL database- Handling a basic database query within a gRPC methodRemember to handle errors properly, implement proper validation, and consider using an ORM like GORM for more complex database interactions. Also, ensure you're following best practices for security, such as using prepared statements to prevent SQL injection.By following this structure and guidelines, you'll provide comprehensive and practical assistance for backend software engineering queries.

Format

.cursorrules

Cursor's original single-file format, superseded by .cursor/rules/*.mdc. Tracked here precisely because it is dead: how much of the ecosystem is still shipping a deprecated file is a measurable answer, and a large share of the "best cursor rules" pages on the web still teach this format.

What the corpus says about it

Repository

Owner
Qwertic
Language
—
License
—
Archived
no

All configs in this repo

Also in Qwertic/cursorrules

Diff this repo’s formats

One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?

The other instruction files in this repository
RepositoryFormatStackCoversScoreChanged
Qwertic/cursorrulesrules/next-type-llm/.cursorrules · 26.cursorrulesunclassifiedsecurity30/1003 days ago
Qwertic/cursorrulesrules/angular-typescript-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedtestdocs34/1003 days ago
Qwertic/cursorrulesrules/ascii-simulation-game-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedno sections34/1003 days ago
Qwertic/cursorrulesrules/astro-typescript-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedgit30/1003 days ago
Qwertic/cursorrulesrules/chrome-extension-dev-js-typescript-cursorrules-pro/.cursorrules · 26.cursorrulesunclassifiedstyle38/1003 days ago
Qwertic/cursorrulesrules/code-guidelines-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedstyletesting-strategydo-notagent-behaviour41/1003 days ago
Qwertic/cursorrulesrules/cursor-ai-react-typescript-shadcn-ui-cursorrules-p/.cursorrules · 26.cursorrulesunclassifiedno sections16/1003 days ago
Qwertic/cursorrulesrules/cursorrules-cursor-ai-nextjs-14-tailwind-seo-setup/.cursorrules · 26.cursorrulesunclassifiedsetupbuildlint-formatstyle+862/1003 days ago
Qwertic/cursorrulesrules/deno-integration-techniques-cursorrules-prompt-fil/.cursorrules · 26.cursorrulesunclassifiedno sections16/1003 days ago
Qwertic/cursorrulesrules/dragonruby-best-practices-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedstyle34/1003 days ago
Qwertic/cursorrulesrules/elixir-engineer-guidelines-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedno sections16/1003 days ago
Qwertic/cursorrulesrules/github-code-quality-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifieddo-notagent-behaviour37/1003 days ago
Qwertic/cursorrulesrules/github-cursorrules-prompt-file-instructions/.cursorrules · 26.cursorrulesunclassifiedno sections26/1003 days ago
Qwertic/cursorrulesrules/go-servemux-rest-api-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedno sections30/1003 days ago
Qwertic/cursorrulesrules/graphical-apps-development-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedsetupbuildstylearch+446/1003 days ago
Qwertic/cursorrulesrules/html-tailwind-css-javascript-cursorrules-prompt-fi/.cursorrules · 26.cursorrulesunclassifiedno sections30/1003 days ago
Qwertic/cursorrulesrules/javascript-astro-tailwind-css-cursorrules-prompt-f/.cursorrules · 26.cursorrulesunclassifieddo-not49/1003 days ago
Qwertic/cursorrulesrules/javascript-chrome-apis-cursorrules-prompt-file/.cursorrules · 26.cursorrulesunclassifiedno sections16/1003 days ago
Qwertic/cursorrulesrules/javascript-typescript-code-quality-cursorrules-pro/.cursorrules · 26.cursorrulesunclassifiedteststyletypesperformance+349/1003 days ago
Qwertic/cursorrulesrules/kubernetes-mkdocs-documentation-cursorrules-prompt/.cursorrules · 26.cursorrulesunclassifiedno sections16/1003 days ago
Diff against rules/next-type-llm/.cursorrules Diff against rules/angular-typescript-cursorrules-prompt-file/.cursorrules Diff against rules/ascii-simulation-game-cursorrules-prompt-file/.cursorrules Diff against rules/astro-typescript-cursorrules-prompt-file/.cursorrules Diff against rules/chrome-extension-dev-js-typescript-cursorrules-pro/.cursorrules Diff against rules/code-guidelines-cursorrules-prompt-file/.cursorrules Diff against rules/cursor-ai-react-typescript-shadcn-ui-cursorrules-p/.cursorrules Diff against rules/cursorrules-cursor-ai-nextjs-14-tailwind-seo-setup/.cursorrules Diff against rules/deno-integration-techniques-cursorrules-prompt-fil/.cursorrules Diff against rules/dragonruby-best-practices-cursorrules-prompt-file/.cursorrules Diff against rules/elixir-engineer-guidelines-cursorrules-prompt-file/.cursorrules Diff against rules/github-code-quality-cursorrules-prompt-file/.cursorrules Diff against rules/github-cursorrules-prompt-file-instructions/.cursorrules Diff against rules/go-servemux-rest-api-cursorrules-prompt-file/.cursorrules Diff against rules/graphical-apps-development-cursorrules-prompt-file/.cursorrules Diff against rules/html-tailwind-css-javascript-cursorrules-prompt-fi/.cursorrules Diff against rules/javascript-astro-tailwind-css-cursorrules-prompt-f/.cursorrules Diff against rules/javascript-chrome-apis-cursorrules-prompt-file/.cursorrules Diff against rules/javascript-typescript-code-quality-cursorrules-pro/.cursorrules Diff against rules/kubernetes-mkdocs-documentation-cursorrules-prompt/.cursorrules
RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack