Go Documentation
Resource Routing
scripts/check-docs.sh - Run when checking exported functions, types, methods, constants, and packages for missing doc comments.
scripts/check-docs-ast.go - Implementation helper invoked by check-docs.sh; patch this when changing documentation analysis behavior.
assets/doc-template.go - Use when starting a documented package or exported API.
references/CONVENTIONS.md - Read when documenting parameters, context behavior, concurrency safety, cleanup, errors, or named results.
references/EXAMPLES.md - Read when adding runnable examples or package examples.
references/FORMATTING.md - Read when formatting Godoc lists, paragraphs, links, and code blocks.
Doc Comments
Normative: All top-level exported names must have doc comments.
Basic Rules
- Begin with the name of the object being described
- An article ("a", "an", "the") may precede the name
- Use full sentences (capitalized, punctuated)
// A Request represents a request to run a command.
type Request struct { ...
// Encode writes the JSON encoding of req to w.
func Encode(w io.Writer, req *Request) { ...
Unexported types/functions with unobvious behavior should also have doc comments.
Validation: After adding doc comments, run bash scripts/check-docs.sh to verify no exported symbols are missing documentation. Fix any gaps before proceeding.
Comment Sentences
Normative: Documentation comments must be complete sentences.
- Capitalize the first word, end with punctuation
- Exception: may begin with uncapitalized identifier if clear
- End-of-line comments for struct fields can be phrases
Comment Line Length
Advisory: Aim for ~80 columns, but no hard limit.
Break based on punctuation. Don't split long URLs.
Struct Documentation
Group fields with section comments. Mark optional fields with defaults:
type Options struct {
// General setup:
Name string
Group *FooGroup
// Customization:
LargeGroupThreshold int // optional; default: 10
}
Package Comments
Normative: Every package must have exactly one package comment.
// Package math provides basic constants and mathematical functions.
package math
- For
main packages, use the binary name: // The seed_generator command ...
- For long package comments, use a
doc.go file
What to Document
Advisory: Document non-obvious behavior, not obvious behavior.
| Topic |
Document when... |
Skip when... |
| Parameters |
Non-obvious behavior, edge cases |
Restates the type signature |
| Contexts |
Behavior differs from standard cancellation |
Standard ctx.Err() return |
| Concurrency |
Ambiguous thread safety (e.g., read that mutates) |
Read-only is safe, mutation is unsafe |
| Cleanup |
Always document resource release |
— |
| Errors |
Sentinel values, error types (use *PathError) |
— |
| Named results |
Multiple params of same type, action-oriented names |
Type alone is clear enough |
Key principles:
- Context cancellation returning
ctx.Err() is implied — don't restate it
- Read-only ops are assumed thread-safe; mutations assumed unsafe — don't restate
- Always document cleanup requirements (e.g.,
Call Stop to release resources)
- Use pointer in error type docs (
*PathError) for correct errors.Is/errors.As
- Don't name results just to enable naked returns — clarity > brevity
Runnable Examples
Advisory: Provide runnable examples in test files (*_test.go).
func ExampleConfig_WriteTo() {
cfg := &Config{Name: "example"}
cfg.WriteTo(os.Stdout)
// Output:
// {"name": "example"}
}
Examples appear in Godoc attached to the documented element.
Quick Reference
| Topic |
Key Rule |
| Doc comments |
Start with name, use full sentences |
| Line length |
~80 chars, prioritize readability |
| Package comments |
One per package, above package clause |
| Parameters |
Document non-obvious behavior only |
| Contexts |
Document exceptions to implied behavior |
| Concurrency |
Document ambiguous thread safety |
| Cleanup |
Always document resource release |
| Errors |
Document sentinels and types (note pointer) |
| Examples |
Use runnable examples in test files |
| Formatting |
Blank lines for paragraphs, indent for code |
Related Skills
- Naming conventions: See go-naming when choosing names for the identifiers your doc comments describe
- Testing examples: See go-testing when writing runnable
Example test functions that appear in godoc
- Linting enforcement: See go-linting when using revive or other linters to enforce doc comment presence
- Style principles: See go-style-core when balancing documentation verbosity against clarity and concision
1---2name: go-documentation3description: Use when writing or reviewing documentation for Go packages, types, functions, or methods. Also use proactively when creating new exported types, functions, or packages, even if the user doesn't explicitly ask about documentation. Does not cover code comments for non-exported symbols (see go-style-core).4---5# Go Documentation67## Resource Routing89- `scripts/check-docs.sh` - Run when checking exported functions, types, methods, constants, and packages for missing doc comments.10- `scripts/check-docs-ast.go` - Implementation helper invoked by `check-docs.sh`; patch this when changing documentation analysis behavior.11- `assets/doc-template.go` - Use when starting a documented package or exported API.12- `references/CONVENTIONS.md` - Read when documenting parameters, context behavior, concurrency safety, cleanup, errors, or named results.13- `references/EXAMPLES.md` - Read when adding runnable examples or package examples.14- `references/FORMATTING.md` - Read when formatting Godoc lists, paragraphs, links, and code blocks.1516---1718## Doc Comments1920> **Normative**: All top-level exported names must have doc comments.2122### Basic Rules23241. Begin with the name of the object being described252. An article ("a", "an", "the") may precede the name263. Use full sentences (capitalized, punctuated)2728```go29// A Request represents a request to run a command.30type Request struct { ...3132// Encode writes the JSON encoding of req to w.33func Encode(w io.Writer, req *Request) { ...34```3536Unexported types/functions with unobvious behavior should also have doc comments.3738> **Validation**: After adding doc comments, run `bash scripts/check-docs.sh` to verify no exported symbols are missing documentation. Fix any gaps before proceeding.3940---4142## Comment Sentences4344> **Normative**: Documentation comments must be complete sentences.4546- Capitalize the first word, end with punctuation47- Exception: may begin with uncapitalized identifier if clear48- End-of-line comments for struct fields can be phrases4950---5152## Comment Line Length5354> **Advisory**: Aim for ~80 columns, but no hard limit.5556Break based on punctuation. Don't split long URLs.5758---5960## Struct Documentation6162Group fields with section comments. Mark optional fields with defaults:6364```go65type Options struct {66 // General setup:67 Name string68 Group *FooGroup6970 // Customization:71 LargeGroupThreshold int // optional; default: 1072}73```7475---7677## Package Comments7879> **Normative**: Every package must have exactly one package comment.8081```go82// Package math provides basic constants and mathematical functions.83package math84```8586- For `main` packages, use the binary name: `// The seed_generator command ...`87- For long package comments, use a `doc.go` file8889---9091## What to Document9293> **Advisory**: Document non-obvious behavior, not obvious behavior.9495| Topic | Document when... | Skip when... |96|-------|-----------------|--------------|97| Parameters | Non-obvious behavior, edge cases | Restates the type signature |98| Contexts | Behavior differs from standard cancellation | Standard `ctx.Err()` return |99| Concurrency | Ambiguous thread safety (e.g., read that mutates) | Read-only is safe, mutation is unsafe |100| Cleanup | Always document resource release | — |101| Errors | Sentinel values, error types (use `*PathError`) | — |102| Named results | Multiple params of same type, action-oriented names | Type alone is clear enough |103104Key principles:105106- Context cancellation returning `ctx.Err()` is implied — don't restate it107- Read-only ops are assumed thread-safe; mutations assumed unsafe — don't restate108- Always document cleanup requirements (e.g., `Call Stop to release resources`)109- Use pointer in error type docs (`*PathError`) for correct `errors.Is`/`errors.As`110- Don't name results just to enable naked returns — clarity > brevity111112---113114## Runnable Examples115116> **Advisory**: Provide runnable examples in test files (`*_test.go`).117118```go119func ExampleConfig_WriteTo() {120 cfg := &Config{Name: "example"}121 cfg.WriteTo(os.Stdout)122 // Output:123 // {"name": "example"}124}125```126127Examples appear in Godoc attached to the documented element.128129---130131## Quick Reference132133| Topic | Key Rule |134|-------|----------|135| Doc comments | Start with name, use full sentences |136| Line length | ~80 chars, prioritize readability |137| Package comments | One per package, above `package` clause |138| Parameters | Document non-obvious behavior only |139| Contexts | Document exceptions to implied behavior |140| Concurrency | Document ambiguous thread safety |141| Cleanup | Always document resource release |142| Errors | Document sentinels and types (note pointer) |143| Examples | Use runnable examples in test files |144| Formatting | Blank lines for paragraphs, indent for code |145146---147148## Related Skills149150- **Naming conventions**: See [go-naming](../go-naming/SKILL.md) when choosing names for the identifiers your doc comments describe151- **Testing examples**: See [go-testing](../go-testing/SKILL.md) when writing runnable `Example` test functions that appear in godoc152- **Linting enforcement**: See [go-linting](../go-linting/SKILL.md) when using revive or other linters to enforce doc comment presence153- **Style principles**: See [go-style-core](../go-style-core/SKILL.md) when balancing documentation verbosity against clarity and concision