Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기staticcheck
스타3
포크0
업데이트2025년 12월 18일 03:03
Fix staticcheck issues
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Fix staticcheck issues
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Handle hook scripts and paths for plugin packaging
Package claudefiles components into a valid Claude Code plugin
Package language-specific subsets of claudefiles
Plugin validation errors and fixes
Common channel patterns and idioms
Context cancellation patterns for graceful shutdown
| name | staticcheck |
| description | Fix staticcheck issues |
Advanced static analyzer with comprehensive checks.
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck ./...
staticcheck -checks=all ./...
// Bad
ioutil.ReadFile("file.txt")
// Good
os.ReadFile("file.txt")
// Bad
value := compute()
value = other()
// Good
_ = compute()
value := other()
// Bad
if err != nil {
// TODO
}
// Good - remove or implement
if err != nil {
return err
}
// Bad
if x == true {
return true
}
// Good
return x
// Bad
func GetHTTPSUrl() string
// Good
func GetHTTPSURL() string
// Bad
fmt.Printf("error: %v\n", err)
// Good
fmt.Fprintf(os.Stderr, "error: %v\n", err)
// Bad
append(slice, item)
// Good
slice = append(slice, item)
# .staticcheck.conf
checks = ["all", "-ST1000"]