Agent skill
Go
Go language coding standards, best practices, and testing patterns. Use when writing or reviewing Go code, implementing tests, or discussing Go language features.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/testing/go-bendrucker-claude
SKILL.md
Go
- Use the latest Go language features within the version given in
go.mod.
Tests
Write table-style tests:
func TestMyFunction(t *testing.T) {
for _, tc := range []struct {
name string
input string
expected string
}{
{
name: "case1",
input: "input1",
expected: "expected1",
},
{
name: "case2",
input: "input2",
expected: "expected2",
},
} {
t.Run(tc.name, func(t *testing.T) {
if result := MyFunction(tc.input); result != tc.expected {
t.Errorf("expected %s, got %s", tc.expected, result)
}
})
}
}
- Include a
namefield in test cases. Use space-delimited words. - Never use test names to control test behavior.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?