go-project-conventions

star 116

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

rcarmo By rcarmo schedule Updated 2/6/2026

name: Go project conventions description: Project conventions with module caching, linting, security checks, and tests via Make

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 depsgo mod download + install golangci-lint and gosec if missing
  • make vetgo vet ./...
  • make lintgolangci-lint run --timeout=5m
  • make securitygosec ./...
  • make testgo test -v -race -coverprofile=coverage.out ./...
  • make checkmake vet && make lint
Install via CLI
npx skills add https://github.com/rcarmo/agentbox --skill go-project-conventions
Repository Details
star Stars 116
call_split Forks 6
navigation Branch main
article Path SKILL.md
More from Creator