# Go project conventions

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

- Skill: `rcarmo/go-project-conventions-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add rcarmo/go-project-conventions-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rcarmo/go-project-conventions-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: rcarmo (https://skillmd.com/u/rcarmo)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/rcarmo/go-project-conventions-2

---


# 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` + `go mod tidy`
- `make vet` → `go vet ./...`
- `make lint` → `fmt` + `vet` + `staticcheck` (if available)
- `make security` → `gosec ./...` (if available)
- `make test` → `go test -v ./...`
- `make check` → `make lint && make test` (standard validation pipeline)

