원클릭으로
deps
Check and tidy Go module dependencies. Use after adding/removing imports or before releases.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check and tidy Go module dependencies. Use after adding/removing imports or before releases.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run Go benchmarks and compare results to detect performance regressions. Use before and after performance-related changes.
Run pre-push quality checks (vet + lint + tests with race detector). Use before pushing code.
Run tests with coverage analysis and identify untested code paths. Use to find gaps before releases.
Run go generate to build templ templates and frontend assets. Use after changing templates or CSS/JS.
Run integration tests that require Docker (Postgres, MinIO via testcontainers). Use to validate database and storage behavior.
Run golangci-lint and static analysis on Go code. Use before pushing or to check code quality.
| name | deps |
| description | Check and tidy Go module dependencies. Use after adding/removing imports or before releases. |
| disable-model-invocation | true |
Check and tidy Go module dependencies to keep go.mod/go.sum clean.
/deps - Tidy and verify dependenciesTidy modules
go mod tidy 2>&1
Verify checksums
go mod verify 2>&1
Check for changes
git diff --stat go.mod go.sum 2>&1
Report findings
## Dependency Check
### Changes
- [added/removed/changed dependencies]
### Verification
- Checksums: OK / issues found
### Summary
- go.mod changed: yes/no
- go.sum changed: yes/no
If dependencies changed, show the diff and explain what was added or removed.