.PHONY: run test build fmt run: go run ./cmd/brain test: go test ./... build: go build -o bin/neural-brain ./cmd/brain fmt: gofmt -w cmd internal