Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기$pwd:
$ git log --oneline --stat
stars:644
forks:56
updated:2026년 3월 10일 09:37
SKILL.md
| name | go-check |
| description | Run go vet to analyze Go source code for suspicious constructs |
Use go vet to examine Go source code and report suspicious constructs
that the compiler might not catch.
To vet the current package:
go vet ./...
To vet a specific package:
go vet ./pkg/mypackage
-v — verbose output, listing checked files-json — output diagnostics in JSON format-vettool=path — use an external vet toolgo vet runs several built-in analyzers including:
printf — check printf-style format stringsshadow — check for shadowed variablesstructtag — check struct field tags conform to reflect.StructTag.Getunusedresult — check for unused results of calls to certain functions