Go
Included with Lifetime
$97 forever
Execute these commands after EVERY implementation (see AGENT_AUTOMATION module for full workflow).
languageslanguageslanguage
What this skill does
<!-- GO:START -->
# Go Project Rules
## Agent Automation Commands
**CRITICAL**: Execute these commands after EVERY implementation (see AGENT_AUTOMATION module for full workflow).
```bash
# Complete quality check sequence:
gofmt -l . # Format check (should be empty)
golangci-lint run # Linting
go vet ./... # Static analysis
go test ./... -v -race -coverprofile=coverage.out # Tests + race detection
go tool cover -func=coverage.out # Coverage (95%+ required)
go build ./... # Build verification
# Security audit:
go list -json -m all | nancy sleuth # Vulnerability scan
go list -u -m all # Check outdated deps
```
## Go Version
**CRITICAL**: Use Go 1.21+ for modern features and performance.
- **Minimum Version**: Go 1.21+
- **Recommended**: Go 1.22+
- **Module System**: Go modules enabled
### Formatting
- Use `gofmt` or `goimports` for code formatting
- Standard Go formatting is non-negotiable
- Format before committing: `gofmt -w .`
- CI must check formatting: `gofmt -l . | wc -l` should be 0
### Linting
- Use `golangci-lint` with recommended linters
- Configuration in `.golangci.yml`
- Must pass with no issues
- Enable linters: govet, errcheck, staticcheck, gosimple, unused
Example `.golangci.yml`:
```yaml
linters:
enable:
- govet
- errcheck
- staticcheck
- gosimple
- unused
- gosec
- gocyclo
- gofmt
- goimports
linters-settings:
gocyclo:
min-complexity: 15
govet:
check-shadowing: true
issues:
exclude-use-default: false
```
### Testing
- **Framework**: Standard testing package
- **Location**: `*_test.go` files in same package
- **Coverage**: Must meet project threshold (default 95%)
- **Table-Driven Tests**: Use for multiple test cases
- **Subtests**: Use `t.Run()` for organized tests
Example test structure:
```go
package mypackage
import (
"testing"
)
func TestMyFunction(t *testing.T) {
tests := []struct {
name string
input string
want string
wantErr bool
}{
{"valid input", "test", "TEST", false},
{"empty input", "", "", true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := MyFunction(tt.input)
if (err != nil) != tt.wantErr {
t.Errorf("MyFunction() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("MyFunction() = %v, want %v", got, tt.want)
}
})
}
}
```
### Test Categories: S2S and Slow Tests
**CRITICAL**: Tests must be categorized based on execution time and dependencies.
#### Test Time Limits
- **Fast Tests**: Must complete in ≤ 10-20 seconds
- **Slow Tests**: Any test taking > 10-20 seconds must be marked as slow
- **S2S Tests**: Tests requiring active server/database must be isolated and run on-demand
#### S2S (Server-to-Server) Tests
**Tests that require active servers, databases, or external services must be isolated using build tags.**
**Implementation**:
1. **Use build tags to isolate S2S tests**:
```go
// +build s2s
package mypackage
import (
"testing"
"os"
)
func TestDatabaseConnection(t *testing.T) {
// Requires active database server
if os.Getenv("RUN_S2S_TESTS") == "" {
t.Skip("S2S tests disabled. Set RUN_S2S_TESTS=1 to enable.")
}
db := connectToDatabase()
// ... test implementation
}
func TestAPIIntegration(t *testing.T) {
// Requires active API server
if os.Getenv("RUN_S2S_TESTS") == "" {
t.Skip("S2S tests disabled. Set RUN_S2S_TESTS=1 to enable.")
}
client := createAPIClient()
// ... test implementation
}
```
2. **Regular tests (without build tag)**:
```go
// Regular fast test (always runs)
package mypackage
import "testing"
func TestLocalComputation(t *testing.T) {
// Fast test, no external dependencies
result := computeLocally("input")
if result != "expected" {
t.Errorf("Expected 'expected', got %v", result)
}
}
```
3. **Run tests**:
```bash
# Regular tests (excludes S2S)
go test ./...
# Include S2S tests (requires active servers)
RUN_S2S_TESTS=1 go test -tags s2s ./...
# Run only S2S tests
RUN_S2S_TESTS=1 go test -tags s2s ./... -run TestDatabase
```
#### Slow Tests
**Tests that take > 10-20 seconds must be marked and run separately.**
**Implementation**:
1. **Use build tags for slow tests**:
```go
// +build slow
package mypackage
import (
"testing"
"time"
)
func TestHeavyComputation(t *testing.T) {
// Takes 30+ seconds
start := time.Now()
result := processLargeDataset()
duration := time.Since(start)
if result == nil {
t.Error("Expected result, got nil")
}
t.Logf("Test completed in %v", duration)
}
func TestLargeFileProcessing(t *testing.T) {
// Processes large files, takes > 20 seconds
result := processFile("large_file.dat")
if !result.Success {
t.Error("File processing failed")
}
}
```
2. **Alternative: Use environment variable**:
```go
package mypackage
import (
"os"
"testing"
)
func TestHeavyComputation(t *testing.T) {
if os.Getenv("RUN_SLOW_TESTS") == "" {
t.Skip("Slow tests disabled. Set RUN_SLOW_TESTS=1 to enable.")
}
// Heavy computation test
}
```
3. **Run tests**:
```bash
# Regular tests (excludes slow and S2S)
go test ./...
# Include slow tests
RUN_SLOW_TESTS=1 go test -tags slow ./...
# Run both S2S and slow tests
RUN_S2S_TESTS=1 RUN_SLOW_TESTS=1 go test -tags "s2s slow" ./...
```
4. **Add Makefile targets**:
```makefile
.PHONY: test test-s2s test-slow test-all
test:
go test ./...
test-s2s:
RUN_S2S_TESTS=1 go test -tags s2s ./...
test-slow:
RUN_SLOW_TESTS=1 go test -tags slow ./...
test-all:
RUN_S2S_TESTS=1 RUN_SLOW_TESTS=1 go test -tags "s2s slow" ./...
```
5. **Set timeouts in test functions**:
```go
func TestWithTimeout(t *testing.T) {
done := make(chan bool)
go func() {
// Long-running test
result := heavyOperation()
done <- (result != nil)
}()
select {
case success := <-done:
if !success {
t.Error("Test failed")
}
case <-time.After(60 * time.Second):
t.Fatal("Test timeout after 60 seconds")
}
}
```
#### Best Practices
- ✅ **Always run fast tests** in CI/CD by default
- ✅ **Isolate S2S tests** - never run them in standard test suite
- ✅ **Mark slow tests** - prevent CI/CD timeouts
- ✅ **Document requirements** - specify which servers/services are needed for S2S tests
- ✅ **Use build tags** - `// +build s2s` and `// +build slow`
- ✅ **Use environment variables** - Check `RUN_S2S_TESTS` and `RUN_SLOW_TESTS`
- ✅ **Set timeouts** - Use `time.After()` or `context.WithTimeout()` for long-running tests
- ✅ **Skip conditionally** - Use `t.Skip()` when services are unavailable
- ❌ **Never mix** fast and slow/S2S tests in same test run
- ❌ **Never require** external services for standard test suite
- ❌ **Never exceed** 10-20 seconds for regular tests
## Dependency Management
**CRITICAL**: Use Go modules for dependency management.
### go.mod and go.sum
```bash
# Initialize module
go mod init github.com/username/project
# Add dependency
go get github.com/package/name@latest
# Update dependencies
go get -u ./...
go mod tidy
# Verify dependencies
go mod verify
```
### Dependency Guidelines
1. **Check for latest versions**:
- Use Context7 MCP tool if available
- Check pkg.go.dev for documentation
- Review changelog for breaking changes
2. **Version Selection**:
- ✅ Use latest stable versions
- ✅ Pin to specific versions for reproducibility
- ✅ Keep dependencies updated regularly
- ✅ Use `go mod tidy` to remove unused
- ❌ Don't use deprecated packages
- ❌ Don't vendor unless necessary
## Error Handling
- Always return errors, don't panic
- Use custom error types with `fmtRelated in languages
csharp-expert
IncludedExpert-level C# development with .NET 8+, ASP.NET Core, LINQ, async/await, and enterprise patterns
languages
java-expert
IncludedExpert-level Java development with Java 21+ features, Spring Boot, Maven/Gradle, and enterprise best practices
languages
pcl-expert
IncludedExpert in Persona Control Language (PCL) - language design, compiler architecture, runtime systems, and ecosystem development
languages
php-expert
IncludedExpert-level PHP development with PHP 8+, Laravel, Composer, and modern best practices
languages
rust-expert
IncludedExpert-level Rust development with ownership, lifetimes, async, error handling, and production-grade patterns
languages
go-expert
IncludedExpert-level Go development with Go 1.22+ features, concurrency, standard library, and production-grade best practices
languages