501 B
501 B
Task Templates
Bugfix
- Read the affected package and nearby tests
- Explain root cause briefly
- Implement the smallest fix in the narrowest package possible
- Run focused validation, then
go test ./...if appropriate - Report risks, especially around concurrency and I/O
Refactor
- Preserve public behavior
- Avoid package-wide churn unless clearly justified
- Keep imports, naming, and package boundaries tidy
- Re-run tests after each meaningful step if the refactor is risky