Execute qualquer Skill no Manus
com um clique
com um clique
Execute qualquer Skill no Manus com um clique
Começar$pwd:
$ git log --oneline --stat
stars:644
forks:56
updated:10 de março de 2026 às 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