Skip to content

Commit 7db10b6

Browse files
authored
docs: Add AGENTS.md (#3461)
Create AGENTS.md
1 parent 94e30d7 commit 7db10b6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

AGENTS.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
```bash
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

Comments
 (0)