From go-backend
Go 依存関係の整理・キャッシュクリア。「go mod tidy」「依存関係」「go mod」「キャッシュクリア」「go clean」などのキーワードで自動適用。
npx claudepluginhub no-problem-dev/claude-code-plugins --plugin go-backendThis skill uses the workspace's default tool permissions.
Go バックエンドの依存関係整理とキャッシュ管理。
Applies Acme Corporation brand guidelines including colors, fonts, layouts, and messaging to generated PowerPoint, Excel, and PDF documents.
Builds DCF models with sensitivity analysis, Monte Carlo simulations, and scenario planning for investment valuation and risk assessment.
Calculates profitability (ROE, margins), liquidity (current ratio), leverage, efficiency, and valuation (P/E, EV/EBITDA) ratios from financial statements in CSV, JSON, text, or Excel for investment analysis.
Go バックエンドの依存関係整理とキャッシュ管理。
以下の優先順位で Go プロジェクトを検出:
GO_BACKEND_DIR(go.mod の存在を確認)go.modbackend/, server/, api/, go/)cd <backend_dir>
# 未使用の依存を削除、不足している依存を追加
go mod tidy
# ビルドキャッシュのクリア
go clean -cache
# テストキャッシュのクリア
go clean -testcache
# モジュールキャッシュのクリア(全プロジェクトに影響)
go clean -modcache
go mod tidygo mod tidygo: modules disabled by GO111MODULE=off
対処:
export GO111MODULE=on
go mod tidy
go clean -modcache は全プロジェクトのモジュールキャッシュを削除する