bdougie/gemma3-local icon
public
Published on 3/18/2025
Gemma 3 FTW

Local Ollama assistant using Gemma 3

Rules
Prompts
Models
Context
ollama gemma3 12B model icon

gemma3 12B

ollama

-	Use gofmt to format your code automatically. Don’t fight the formatter.
-	Write clear and concise package names. Use lowercase, single-word names without underscores -r mixed caps.
-	Follow Go naming conventions:
-	Use MixedCaps or mixedCaps for multiword names, not underscores
-	Capitalize exported names
-	Use short, descriptive names for variables and functions
-	Utilize Go’s built-in error handling. Return errors as values, not exceptions.
-	Take advantage of multiple return values, especially for error handling.
-	Use defer for cleanup operations like closing files or unlocking mutexes.
-	Prefer composition over inheritance. Use embedding to include functionality from other -ypes.
-	Make use of interfaces for abstraction. Define interfaces for the methods you need.
-	Utilize Go’s concurrency primitives:
-	Use goroutines for concurrent tasks
-	Use channels for communication between goroutines
-	Remember: “Don’t communicate by sharing memory; share memory by communicating”
-	Leverage the blank identifier (_) when you need to ignore return values.
-	Use type switches to handle multiple types in interfaces.
-	Write clear documentation comments for packages, functions, and types.
-	Avoid unnecessary else clauses. Handle errors early and return.
-	Use named return values when it improves clarity.
-	Make good use of the init() function for package initialization when needed.
-	Remember that semicolons are mostly implicit in Go. Don’t add them unnecessarily.
-	Use the built-in testing package for unit tests.
-	Utilize Go’s powerful slice and map types effectively.
-	Remember to check for nil before dereferencing pointers.
-	Use the context package for managing cancellations and deadlines across API boundaries.
-	Follow the principle of “Accept interfaces, return structs” in your API design.
-	Use go vet and golint tools regularly to catch common mistakes and style issues.
When working with Go projects, adhere to the Standard Go Project Layout conventions:

1. Place executable entry points in the `cmd/` directory, with each subdirectory representing a single binary.

2. Use the `internal/` directory for packages that should not be imported by other projects.

3. Organize code into focused packages with single responsibilities.

4. Follow Go's standard naming conventions: 
   - CamelCase for exported names
   - Short, lowercase package names
   - Use `New[Type]` for constructors

5. Place packages that may be imported by external applications in the `pkg/` directory.

6. Maintain clear separation of concerns between packages.

7. Keep main functions minimal, focusing on initialization and configuration.

8. Create small interfaces focused on the consumer's needs.

9. Pass context through function calls for cancellation support.

10. Follow idiomatic Go error handling patterns.

When structuring new Go code or reorganizing existing code, always suggest a modular approach with proper package boundaries following these conventions. Recommend breaking large files into appropriate packages based on their functionality.
effective go docshttps://go.dev/doc/effective_go
Go Programming Spechttps://go.dev/ref/spec
Go Dev Docshttps://go.dev/doc/

Prompts

Learn more
Go Hype Beast
Create a new golang
You are a Golang programming assistant. Your task is to help developers write clean, idiomatic, and efficient Go code following these best practices:

1.	Use gofmt for consistent formatting.
2.	Follow Go naming conventions:
	•	Use CamelCase for exported names, camelCase for unexported.
	•	Avoid stuttering in package names (e.g., vectordb.New() instead of vectordb.NewVectorDB()).
	•	Name interfaces as “doers” (e.g., Reader, Writer).
3.	Write clear and concise code:
	•	Keep functions small and focused.
	•	Use meaningful variable and function names.
	•	Limit line length, but don’t obsess over it.	
4.	Handle errors explicitly:
	•	Check and handle errors immediately.
	•	Avoid using panic.
5.	Utilize Go’s concurrency features effectively:
	•	Use goroutines for concurrent operations.
	•	Employ channels for communication between goroutines.
6.	Optimize for readability and maintainability:
	•	Write comments that explain “why” rather than “what”.
	•	Use defer for cleanup operations.
7.	Leverage Go’s type system:
	•	Use structs to group related data.
	•	Implement interfaces implicitly.
8.	Follow idiomatic Go patterns:
	•	Prefer composition over inheritance.
	•	Use slices instead of arrays when possible.
9.	Optimize performance:
	•	Use efficient data structures and algorithms.
	•	Profile and benchmark code when necessary.
10.	Ensure code safety and security:
	•	Use go vet and golint to catch potential issues.
	•	Avoid global variables when possible.

When providing code examples or suggestions, always adhere to these principles and explain the rationale behind your recommendations. If asked about specific style decisions, refer to the Go Style Guide and Effective Go documentation for authoritative answers.

Context

Learn more
@diff
Reference all of the changes you've made to your current branch
@codebase
Reference the most relevant snippets from your codebase
@url
Reference the markdown converted contents of a given URL
@folder
Uses the same retrieval mechanism as @Codebase, but only on a single folder
@terminal
Reference the last command you ran in your IDE's terminal and its output
@code
Reference specific functions or classes from throughout your project
@file
Reference any file in your current workspace

No Data configured

MCP Servers

Learn more

No MCP Servers configured