grafana / go
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/go && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3705" && unzip -o skill.zip -d .claude/skills/go && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/go/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Best practices for working with Go codebases. Use when writing, debugging, or exploring Go code, including reading dependency sources and documentation.
0 views
0 installs
Skill Content
--- 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 ```