AgentSkillsCN

Go project conventions

通过Make构建项目约定,包括模块缓存、代码风格检查、安全检测与测试。

SKILL.md
--- frontmatter
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)