Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:644
forks:56
updated:March 10, 2026 at 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