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:1
forks:0
updated:May 6, 2026 at 13:48
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | golang.analyze |
| description | Golangの静的解析やテスト、フォーマッタ適用等、品質担保を行うためのSKILL |
| license | MIT License |
| metadata | {"author":"@eaglesakura"} |
# go.workのディレクトリで実施する
go fmt ./...
golangci-lint run ./...
//go:build タグを使う場合は、go test に -tags={tags...} を付与する。{tags...} はプレースホルダであり、実行時にプロジェクトの方針どおりのカンマ区切りタグ(例: dev,test)へ置き換える。# ビルドタグがプロジェクト方針で必要な場合は、{tags...} をカンマ区切りのタグ名に置き換えて -tags を付与する(例: dev,test)
# workspace全体のテスト(go.work があるリポジトリルートで実行)
go test -tags={tags...} ./...
# 個別: パッケージ(ディレクトリ)単位
go test -tags={tags...} ./path/to/module
# 個別: 特定のテスト関数のみ(-run は正規表現)
go test -tags={tags...} ./path/to/module -run '^TestExample$'