go-project-conventions

star 6

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

rcarmo By rcarmo schedule Updated 2/7/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 + go mod tidy
  • make vetgo vet ./...
  • make lintfmt + vet + staticcheck (if available)
  • make securitygosec ./... (if available)
  • make testgo test -v ./...
  • make checkmake lint && make test (standard validation pipeline)
Install via CLI
npx skills add https://github.com/rcarmo/gotel --skill go-project-conventions
Repository Details
star Stars 6
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator