go-dev-guidelines
Enforces Test-Driven Development in Go projects by guiding interface design, mocking, and project structure.
Install
mkdir -p .claude/skills/go-dev-guidelines && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/200" && unzip -o skill.zip -d .claude/skills/go-dev-guidelines && rm skill.zipInstalls to .claude/skills/go-dev-guidelines
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
This skill should be used when writing, refactoring, or testing Go code. It provides idiomatic Go development patterns, TDD-based workflows, project structure conventions, and testing best practices using testify/require and mockery. Activate this skill when creating new Go features, services, packages, tests, or when setting up new Go projects.Key capabilities
- →Define focused Go interfaces
- →Generate mocks using mockery
- →Implement TDD workflows with testify/require
- →Structure projects using standard Go layouts
- →Handle errors explicitly
How it works
The skill enforces a strict TDD methodology where interfaces are defined and tests are written before implementation. It uses specific tools like testify for assertions and mockery for dependency injection.
Inputs & outputs
When to use go-dev-guidelines
- →Setting up a new Go project
- →Refactoring Go code for readability
- →Writing unit tests for Go packages
About this skill
Go Development Guidelines
Overview
This skill provides comprehensive guidelines for idiomatic Go development with a Test-Driven Development (TDD) approach. Follow these patterns when writing Go code, creating tests, organizing projects, or refactoring existing code.
Quick Start Checklists
New Go Feature Checklist
When implementing a new feature in an existing Go project:
- Define interface - Create small, focused interface in appropriate package
- Write tests first - Create
*_test.gofile with testify/require tests - Generate mocks - Use mockery to generate mocks in
mocks/subfolder - Implement logic - Write the implementation to satisfy tests
- Handle errors - Ensure all errors are explicitly handled
- Add integration tests - Test the feature end-to-end if applicable
- Run go vet & gofmt - Ensure code meets Go standards
- Update documentation - Add godoc comments for exported types/functions
New Go Service/Package Checklist
When creating a new Go service or package from scratch:
- Setup project structure - Use standard Go layout (
/cmd,/internal,/pkg) - Initialize module - Run
go mod initwith appropriate module path - Define core interfaces - Start with small, focused interfaces
- Write tests first - Follow TDD approach for all business logic
- Implement with DI - Use dependency injection for testability
- Add logging - Include structured logging for observability
- Configure graceful shutdown - Implement proper cleanup for services
- Document package - Add package-level godoc and README
Core Principles
Follow these seven core principles for all Go development:
1. Follow Test-Driven Development (TDD)
Write tests before implementation. Tests should be easy to read and favor verbosity over abstraction.
2. Use testify/require for Unit Tests
All unit tests must use github.com/stretchr/testify/require for assertions.
3. Use Mockery for Mocks
Generate mocks using mockery. Mocks must be localized in a mocks/ subfolder next to the interface being mocked.
4. Never Use Table-Driven Tests
Avoid table-driven tests. Write explicit test functions for each scenario.
5. Never Mix Positive and Negative Tests
Keep positive (success) and negative (error) test cases in separate test functions.
6. Handle All Errors Explicitly
Never ignore errors. Always handle them explicitly or return them to the caller.
7. Prefer Small, Focused Interfaces
Design interfaces with few methods. Use composition over large interfaces.
8. Use any Instead of interface{}
For generic types, prefer any over interface{} (Go 1.18+).
Standard Go Directory Structure
project-root/
├── cmd/ # Main applications
│ └── myapp/
│ └── main.go
├── internal/ # Private application code
│ ├── handler/ # HTTP handlers
│ │ ├── handler.go
│ │ ├── handler_test.go
│ │ └── mocks/ # Mocks for handler interfaces
│ ├── service/ # Business logic
│ │ ├── service.go
│ │ ├── service_test.go
│ │ └── mocks/
│ └── repository/ # Data access
│ ├── repository.go
│ ├── repository_test.go
│ └── mocks/
├── pkg/ # Public library code
│ └── client/
│ ├── client.go
│ ├── client_test.go
│ └── mocks/
├── api/ # API definitions (OpenAPI, protobuf)
├── configs/ # Configuration files
├── go.mod
├── go.sum
└── README.md
Quick Reference
Common Test Patterns
// Unit test with mock
func TestServiceCreate(t *testing.T) {
mockRepo := mocks.NewRepository(t)
mockRepo.On("Save", mock.Anything).Return(nil)
svc := NewService(mockRepo)
err := svc.Create(context.Background(), data)
require.NoError(t, err)
mockRepo.AssertExpectations(t)
}
// Separate negative test
func TestServiceCreate_RepoError(t *testing.T) {
mockRepo := mocks.NewRepository(t)
mockRepo.On("Save", mock.Anything).Return(errors.New("db error"))
svc := NewService(mockRepo)
err := svc.Create(context.Background(), data)
require.Error(t, err)
require.Contains(t, err.Error(), "db error")
}
Naming Conventions
- Packages: Short, lowercase, no underscores (
handler,service) - Files: Lowercase with underscores (
user_service.go,user_service_test.go) - Types: PascalCase (
UserService,HTTPHandler) - Functions/Methods: PascalCase for exported, camelCase for unexported
- Interfaces: Often end with
-ersuffix (Reader,Writer,UserRepository)
Navigation Table
Use this table to find detailed guidance for specific tasks:
| If You Need To... | See This Resource |
|---|---|
| Set up a new Go project structure | Project Structure |
| Understand Go naming conventions | Naming Conventions |
| Write tests with TDD, testify/require, and mockery | Testing Guide |
| Organize packages, interfaces, and dependencies | Code Organization |
| Handle errors idiomatically | Error Handling |
| Work with goroutines, channels, and context | Concurrency Patterns |
| Manage dependencies and go.mod | Dependencies |
| See complete working examples | Complete Examples |
Resources
This skill includes detailed reference documentation in the references/ directory. Claude will load these resources as needed when working on specific tasks.
When not to use it
- →When writing non-Go code
- →When you prefer table-driven tests over explicit test functions
Prerequisites
Limitations
- →Prohibits the use of table-driven tests
- →Requires positive and negative test cases to be kept in separate functions
How it compares
It mandates explicit test functions and specific directory structures rather than allowing arbitrary project layouts or mixed test cases.
Compared to similar skills
go-dev-guidelines side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| go-dev-guidelines (this skill) | 14 | 9mo | No flags | Intermediate |
| code-formatting | 1 | 2mo | No flags | Beginner |
| tidb-test-guidelines | 2 | 27d | No flags | Intermediate |
| lsp-hover-testing | 1 | 8mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
code-formatting
openshift
MANDATORY: When writing Go tests, you MUST use 'When...it should...' format for ALL test names. When writing any Go code, you MUST remind user to run 'make lint-fix' and 'make verify'. These are non-negotiable HyperShift requirements.
tidb-test-guidelines
pingcap
Decide where to place TiDB tests and how to write them (basic structure, naming, testdata usage). Use when asked about test locations, writing conventions, shard_count limits, casetest categorization, or when reviewing test changes in code review.
lsp-hover-testing
MadAppGang
Automated LSP hover validation for Dingo transpiler. Use when testing hover functionality, validating position mappings, checking for hover drift, or debugging LSP issues after sourcemap changes.
go-rig
mudrii
Use this skill when building, reviewing, or refactoring Go code in this repository. It adds process discipline for TDD/ATDD, package boundaries, dependency injection, and review quality, and complements the always-on rules in AGENTS.md.
code-coverage
viknesh20-20
Analyzes test coverage, identifies untested code paths, and generates tests for the most critical uncovered areas. Use to improve test coverage before releases.
verify-language-support
LegacyCodeHQ
End-to-end workflow for validating language support changes in the clarity dependency graph analyzer