# Go Project Conventions

> Project conventions with module caching, linting, security checks, and tests via Make Use when this capability is needed.

- Skill: `tomevault-io/go-project-conventions-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/go-project-conventions-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/go-project-conventions-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/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)

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/rcarmo) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-12 -->

