agentskills.codes
GO

Go project conventions

Project conventions with module caching, linting, security checks, and tests via Make

Install

mkdir -p .claude/skills/go-project-conventions && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/14285" && unzip -o skill.zip -d .claude/skills/go-project-conventions && rm skill.zip

Installs to .claude/skills/go-project-conventions

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.

Project conventions with module caching, linting, security checks, and tests via Make
85 charsno explicit “when” trigger

About this skill

Skill: Go project conventions

Goal

Provide a standard Go workflow with module caching, linting, security checks, and tests driven by Make.

Make targets (recommended)

  • make deps -> go mod download + install golangci-lint and gosec if missing
  • make vet -> go vet ./...
  • make lint -> golangci-lint run --timeout=5m
  • make security -> gosec ./...
  • make test -> go test -v -race -coverprofile=coverage.out ./...
  • make check -> make vet && make lint

Search skills

Search the agent skills registry