We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e30d7 commit 7db10b6Copy full SHA for 7db10b6
AGENTS.md
@@ -0,0 +1,21 @@
1
+# AGENTS.md
2
+
3
+## Startup script
4
5
+- Fetch dependencies:
6
7
+ ```bash
8
+ go get ./...
9
+ ```
10
11
+- Install CLI tools referenced in Makefile:
12
13
14
+ go install gotest.tools/gotestsum@latest # test runner
15
+ go install golang.org/x/vuln/cmd/govulncheck@latest # vulnerability scanner
16
+ go install mvdan.cc/gofumpt@latest # code formatter
17
+ go install github.com/tinylib/msgp@latest # msgp codegen
18
+ go install github.com/vburenin/ifacemaker@975a95966976eeb2d4365a7fb236e274c54da64c # interface impls
19
+ go install github.com/dkorunic/betteralign/cmd/betteralign@latest # struct alignment
20
+ go mod tidy # clean up go.mod & go.sum
21
0 commit comments