// Build & Development Tools
github.com/magefile/mage                            // Alternative to make
github.com/goreleaser/goreleaser/v2               	// Deliver Go binaries as fast and easily as possible
github.com/spf13/cobra-cli                        	// Create CLI applications
github.com/dolmen-go/goeval                       	// Use go functions in bash

// VSCode Go Extension Tools
golang.org/x/tools/gopls                   			// Go language server
golang.org/x/tools/cmd/goimports           			// Format and manage imports
golang.org/x/lint/golint                   			// Go linter
github.com/cweill/gotests/gotests          			// Generate tests
github.com/fatih/gomodifytags              			// Modify struct tags
github.com/josharian/impl                  			// Generate interface implementations
github.com/haya14busa/goplay/cmd/goplay    			// Go playground client
github.com/go-delve/delve/cmd/dlv          			// Go debugger

// Code Quality & Linting
honnef.co/go/tools/cmd/staticcheck                  // Static analysis
github.com/fzipp/gocyclo/cmd/gocyclo                // Cyclomatic complexity checker
github.com/golangci/golangci-lint/cmd/golangci-lint // Meta linter
github.com/go-critic/go-critic/cmd/gocritic         // Go source code linter

// Security & Encryption
filippo.io/age/cmd/...                              // Simple, modern file encryption tool
github.com/getsops/sops/v3/cmd/sops                 // Editor for encrypted files (YAML, JSON, ENV, INI, BINARY)

// CLI Utilities
github.com/danielmiessler/fabric/cmd/fabric         // ChatGPT CLI utility

github.com/gokcehan/lf                              // Terminal file manager
mvdan.cc/sh/v3/cmd/shfmt                            // Shell formatter
github.com/mikefarah/yq/v4                          // Parse and filter YAML documents

// Documentation
github.com/terraform-docs/terraform-docs            // Autogenerate docs for terraform modules
