feat: bootstrap he maintainer skill

This commit is contained in:
2026-04-29 21:52:55 +08:00
commit c507e52dc1
10 changed files with 377 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
# Go Harness Notes
Use this reference for Go repositories.
## Common files to inspect
- `go.mod`
- `go.sum`
- `cmd/`
- `internal/`
- `pkg/`
- `Makefile`
- `.golangci.*`
## Common validation commands
Typical examples:
- `go test ./...`
- `go build ./...`
- `golangci-lint run`
- `make test`
- `make build`
Prefer repo-defined commands when available.
## Common guardrails
- avoid broad package churn when a local fix is enough
- identify whether generated code exists before editing
- note whether integration tests require external services
- keep command examples copy-pasteable