go | Skill Performance & Reviews | TopRankSkills

TopRank Skills

go

maintained by hay-kot

star 9 account_tree 1 verified_user MIT License
bolt View GitHub

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" source: https://github.com/grafana/loki/pull/20609/files

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:

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:

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:

go run .             # Run the current package
go run ./cmd/foo     # Run a specific command

chat Comments (0)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 9
GitHub Forks 1
Created Mar 2026
Last Updated 3个月前
tools tools automation tools

Related Skills

specs-gen
chevron_right
glm-coding-agent
chevron_right
creating-pr
chevron_right
writing-skills
chevron_right
reviewing-pr
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.