Back to list
bendrucker

go

by bendrucker

My personal plugin marketplace and settings for Claude Code

5🍴 1📅 Jan 23, 2026

SKILL.md


name: go description: Go language coding standards, best practices, and testing patterns. Use when writing or reviewing Go code, implementing tests, or discussing Go language features. user-invocable: false

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 name field in test cases. Use space-delimited words.
  • Never use test names to control test behavior.

Score

Total Score

65/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon