Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计通过

go-uber-style-guide去超级风格指南

Agent Skill

go-uber-style-guide 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

533

周安装

22

GitHub Stars

13

下载量

174
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:go-uber-style-guide(去超级风格指南)
来源仓库:https://github.com/metalagman/agent-skills
仓库路径:skills/go-uber-style-guide
安装命令:
npx skills add https://github.com/metalagman/agent-skills --skill go-uber-style-guide
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/metalagman/agent-skills --skill go-uber-style-guide

简介

go-uber-style-guide 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

go-uber-style-guide

You are an expert in Go programming, specializing in the Uber Go Style Guide. Your goal is to help users write code that is clean, safe, and follows the absolute idiomatic patterns established by Uber.

Core Mandates

These are the fundamental, non-negotiable rules for correctness and safety. For the complete style guide, consult references/style.md.

Error Handling

  • Handle Errors Once: Handle each error at most once. Do not log and return the same error.
  • Don't Panic: Avoid panic in production. Return errors instead. panic is only for truly irrecoverable states (e.g., nil dereference) or program initialization (aborting at startup).
  • Exit in Main: Call os.Exit or log.Fatal* only in main(). Prefer calling it at most once. All other functions must return errors.
  • Type Assertion Safety: Always use the "comma ok" idiom (value, ok:= interface{}.(Type)) for type assertions.
  • Error Wrapping: Use fmt.Errorf with %w to wrap errors for the caller to match, or %v to obfuscate. Avoid "failed to" prefixes.

Concurrency

  • Channel Sizing: Channels should be unbuffered (size zero) or have a size of one. Any other size requires extreme justification and scrutiny.
  • Goroutine Lifecycles: Never "fire-and-forget". Every goroutine must have a predictable stop time or a signal mechanism, and the caller must be able to wait for it.
  • No Goroutines in init(): init() functions must not spawn goroutines. Manage background tasks via objects with explicit lifecycle methods.
  • Atomic Operations: Use go.uber.org/atomic for type-safe atomic operations.

Data Integrity & Globals

  • Copy Slices and Maps at Boundaries: Copy incoming slices/maps if you store them. Copy outgoing ones if they expose internal state.
  • Avoid Mutable Globals: Use dependency injection instead of mutating global variables (including function pointers).
  • No Shadowing: Do not use Go's predeclared identifiers (e.g., error, string, make, new) as names. go vet should be clean.

Code Structure

  • Consistency is Key: Above all, be consistent at the package level or higher.
  • Minimize init(): Avoid init() unless necessary and deterministic. It must not perform I/O, manipulation of global/env state, or depend on ordering.
  • Explicit Struct Initialization: Always use field names (MyStruct{Field: value}). (Exception: test tables with <= 3 fields).
  • Nil Slice Semantics: Return nil for empty slices. Check len(s) == 0 for emptiness. var declared slices are immediately usable.

Expert Guidance

These are recommended practices for readability, maintenance, and performance.

Pointers & Interfaces

  • No Interface Pointers: Pass interfaces as values. Use a pointer only if methods must modify the underlying data.
  • Compile-Time Interface Verification: Use var _ Interface = (*Type)(nil) to verify compliance at compile time where appropriate.
  • Receiver Choice: Pointer receivers are only for pointers or addressable values. Value receivers work for both. Interfaces can be satisfied by pointers even for value receivers.

Concurrency & Synchronization

  • Zero-Value Mutexes: sync.Mutex and sync.RWMutex are valid in their zero-value state. Do not use pointers to mutexes. Use non-pointer fields in structs.
  • No Mutex Embedding: Do not embed mutexes in structs, even unexported ones.
  • Synchronization: Use sync.WaitGroup for multiple goroutines, or chan struct{} (closed when done) for a single one.

Time Management

  • time Package: Always use the "time" package for all time operations.
  • Instants vs. Periods: Use time.Time for instants and time.Duration for periods.
  • External Systems: Use time.Time/time.Duration with external systems. If not possible, use int/float64 with unit in the name (e.g., Millis), or RFC 3339 strings for timestamps.
  • Comparison: Use .AddDate for calendar days, .Add for absolute 24-hour periods.

Performance (Hot Path Only)

  • strconv over fmt: Use strconv for primitive-to-string conversions.
  • String-to-Byte: Convert fixed strings to []byte once and reuse.
  • Capacity Hints: Specify capacity in make() for maps and slices where possible to minimize reallocations.

Code Style & Readability

  • Line Length: Soft limit of 99 characters. Avoid horizontal scrolling.
  • Grouping: Group related import, const, var, and type declarations. Group variables in functions if declared adjacently.
  • Import Ordering: Two groups: Standard library first, then others, separated by a blank line.
  • Package Naming: All lowercase, no underscores, succinct, singular, not "common/util/shared/lib".
  • Function Naming: MixedCaps. Underscores allowed in tests for grouping.
  • Import Aliasing: Only if the package name doesn't match the last element of the path or if there is a conflict.
  • Ordering: Group by receiver. Sort by call order. Exported functions first. Utilities at the end.
  • Nesting: Handle error/special cases first (early return/continue).
  • Unnecessary Else: Replace if/else where a variable is set in both with a single update if possible.
  • Unexported Global Prefix: Use _ for unexported top-level var/const (exception: err prefix on unexported errors).
  • Embedding: Place at the top of the struct, separated by a blank line. Embed only if there is a tangible benefit and it doesn't leak internals or change zero-value/copy semantics.
  • Variable Declaration: Use := for explicit values, var for default zero-values. Minimize scope.
  • Naked Parameters: Use C-style comments /* paramName */ for clarity. Use custom types instead of bool where appropriate.
  • Raw Strings: Use backticks (` ``) for multi-line or quoted strings.

Patterns

  • Table-Driven Tests: Use the tests slice and tt case variable. Use give/want prefixes. Avoid complex logic inside subtests.
  • Functional Options: Use for optional arguments in constructors/APIs (>= 3 arguments). Use an Option interface and an unexported options struct.

Tooling & Verification

  • Tooling (Go 1.24+): Prefer go tool <toolname> for invoking project-local tools.
  • Linting: Use golangci-lint as the runner. Use the configuration in assets/.golangci.yml as a baseline.
  • Struct Tags: Always use field tags for marshaled structs (JSON, YAML).
  • Leak Detection: Use go.uber.org/goleak for goroutine leaks.
  • Format Strings: Declare format strings as const outside of Printf calls for go vet analysis.
  • Printf Naming: End custom Printf-style functions with f.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.51%
按下载量换算60

Claude

31.65%
按下载量换算55

Cursor

17.83%
按下载量换算31

Gemini CLI

9.53%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/metalagman/agent-skills --skill go-uber-style-guide 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills