# Make Check

> Run full pre-commit validation (fmt, lint, test, security) and report results

- Skill: `openfga/make-check` (Agent Skill)
- Install (CLI): `npx skillmds@latest add openfga/make-check`
- Raw SKILL.md: https://api.skillmd.com/api/skills/openfga/make-check/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: openfga (https://skillmd.com/u/openfga)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/openfga/make-check

---


Run `make check` in the project root and report the results.

If any step fails, diagnose the first failure and suggest a fix. Do not proceed to later steps if an earlier one fails — focus on resolving the first issue.

The steps run by `make check` are:
1. `make fmt` — gofmt formatting
2. `make lint` — go vet + golangci-lint
3. `make test` — all tests with race detector
4. `make security` — gosec + govulncheck
