go
Best practices for working with Go codebases. Use when writing, debugging, or exploring Go code, including reading dependency sources and documentation.
소스 정보
- 저장소
- grafana/loki
- 최근 소스 활동
- 2026년 1월 30일 22:21
- 감지된 SKILL.md 언어
- 영어
- 스타
- 28,919
- 포크
- 4,115
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SKILL.md 표시 중
SKILL.md
소스 지침 · 읽기 전용 미리보기- name
- go
- description
- Best practices for working with Go codebases. Use when writing, debugging, or exploring Go code, including reading dependency sources and documentation.
- allowed-tools
- Read,Bash(go:*)
- version
- 1.0.0
- author
- User
- license
- MIT
# Go Programming Language
Guidelines for working effectively with Go projects.
## Reading Dependency Source Files
To see source files from a dependency, or to answer questions about a dependency:
```bash
go mod download -json MODULE
```
Use the returned Dir path to read the source files.
## Reading Documentation
Use go doc to read documentation for packages, types, functions, etc:
```bash
go doc foo.Bar # Documentation for a specific symbol
go doc -all foo # All documentation for a package
```
## Running Programs
Use go run instead of go build to avoid leaving behind build artifacts:
```bash
go run . # Run the current package
go run ./cmd/foo # Run a specific command
```
GitHub에서 보기