Go Error Diagnosis and Fixing

VerifiedSafe

This skill diagnoses and fixes Go errors by analyzing error messages, identifying the cause, applying fixes, and verifying with build/test/lint commands. It helps when encountering compilation, runtime, or lint errors during Go development.

Sby Skills Guide Bot
DevelopmentIntermediate
1806/2/2026
Claude CodeCursorWindsurf
#go#error-fixing#debugging#linting#build-errors

Recommended for

Our review

This skill diagnoses and fixes errors in Go projects, including compile-time, runtime, and lint errors.

Strengths

  • Automatically analyzes error messages to pinpoint file, line number, and error type
  • Fixes common Go errors (type mismatches, undefined variables, nil pointer dereferences, lint violations)
  • Verifies fixes with go build, go test, and golangci-lint after each correction

Limitations

  • May not resolve errors requiring deep domain-specific knowledge
  • Relies on the quality and clarity of the error messages from the compiler or linter
  • Cannot substitute for human code review for complex logical bugs
When to use it

Use this skill when you encounter a Go build, test, or lint error and want a fast, automated fix.

When not to use it

Do not use it for architectural decisions or algorithmic errors that require a high-level understanding of the business logic.

Security analysis

Safe
Quality score85/100

The skill only runs standard Go development commands (go build, go test, golangci-lint) in the project directory without any destructive or exfiltrating actions. No risky patterns like curl|sh or deletions are present.

No concerns found

Examples

Build error fix
Fix the build error in my Go project
Lint error correction
Fix all lint errors in the current directory
Test failure diagnosis
My Go tests are failing, can you help fix them?

name: fix-error description: Go のエラーを診断し修正する。「エラーを直して」「ビルドエラー修正」「コンパイルエラー」「Go のエラー修正」「ビルドが通らない」「テストが失敗」「lint エラー修正」などで起動。 allowed-tools: [Read, Write, Edit, Bash, Glob, Grep] context: fork agent: shiiman-go:error-analyzer

Fix Error

Go のエラーを診断し修正するスキル。

トリガー

  • 「エラーを直して」「ビルドエラー修正」「コンパイルエラー」
  • 「Go のエラー修正」「ビルドが通らない」「テストが失敗」「lint エラー修正」

実行内容

  1. エラーメッセージの解析
  2. 原因の特定
  3. 修正の実施
  4. 修正確認

Claude への指示

実行手順

  1. エラー情報の収集

    ユーザーがエラーメッセージを提供していない場合:

    # ビルドエラー確認
    go build ./... 2>&1
    
    # テストエラー確認
    go test ./... 2>&1
    
    # lint エラー確認
    golangci-lint run ./... 2>&1
    
  2. エラー解析

    エラーメッセージから以下を特定:

    • ファイル名と行番号
    • エラータイプ(コンパイル/ランタイム/lint)
    • 具体的なエラー内容
  3. 原因特定

    # 該当ファイルを読み込み
    Read ツールで該当箇所を確認
    
    # 関連コードを検索
    Grep ツールで定義や使用箇所を検索
    
  4. 修正実施

    error-analyzer エージェントの知識を活用:

    • コンパイルエラー: 型エラー、未定義、インポート
    • ランタイムエラー: nil ポインタ、範囲外アクセス
    • lint エラー: errcheck、staticcheck、gosimple
  5. 修正確認

    go build ./...
    go test ./...
    golangci-lint run ./...
    

出力形式

## エラー修正完了

### 検出されたエラー
- 種類: {コンパイル/ランタイム/lint}
- 箇所: {ファイル名}:{行番号}
- 内容: {エラーメッセージ}

### 原因
{原因の説明}

### 修正内容
{修正した内容の説明}

### 確認結果
- ビルド: ✅ 成功
- テスト: ✅ 成功
Related skills