スキル一覧に戻る
mway

go-lint

by mway

4🍴 0📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


name: go-lint description: Lint and format Go code via golangci-lint. Use when asked to lint code, fix lint errors, or check code quality. allowed-tools: ["shell"] metadata: short-description: Lint Go code with golangci-lint

Go Linter

Reference: ~/.config/agent/domain/coding/go/tooling.md for Go linting details

Instructions

Lint Go code using golangci-lint per AGENT.md guidelines:

Standard Lint (with auto-fix)

golangci-lint run --new-false --fix ${ARGUMENTS}

Default to ./... if no package path is provided.

Lint Only (no fixes)

If user wants to see issues without applying fixes:

golangci-lint run --new-false ${ARGUMENTS}

Lint Flags

  • --new-false: Deprecated syntax for --new=false (show all issues)
  • --fix: Automatically fix issues where possible
  • Path defaults to ./... (all packages)

Common Usage

# Lint and fix all packages
golangci-lint run --new-false --fix ./...

# Lint specific package
golangci-lint run --new-false --fix ./path/to/package

# Check without fixing
golangci-lint run --new-false ./...

Arguments

Target package(s): ${ARGUMENTS:-./...}

スコア

総合スコア

40/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です