# Go Lint

> Go Lint

- Skill: `rootwarp/go-lint` (Agent Skill)
- Install (CLI): `npx skillmds@latest add rootwarp/go-lint`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rootwarp/go-lint/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: rootwarp (https://skillmd.com/u/rootwarp)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/rootwarp/go-lint

---

# /go-lint

Run linters on the Go project.

## Instructions

Run golangci-lint if available, otherwise use go vet:

```bash
if command -v golangci-lint &> /dev/null; then
    golangci-lint run ./...
else
    go vet ./...
fi
```

Analyze any lint warnings or errors and suggest fixes.

