Jeden Skill in Manus ausführen
mit einem Klick
mit einem Klick
Jeden Skill in Manus mit einem Klick ausführen
Loslegen$pwd:
$ git log --oneline --stat
stars:644
forks:56
updated:10. März 2026 um 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