Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

griesemer-precise-go格里瑟默精确走

Agent Skill

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

总安装

1

周安装

8

GitHub Stars

6

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:griesemer-precise-go(格里瑟默精确走)
来源仓库:https://github.com/copyleftdev/sk1llz
仓库路径:skills/griesemer-precise-go
安装命令:
npx skills add https://github.com/copyleftdev/sk1llz --skill griesemer-precise-go
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/copyleftdev/sk1llz --skill griesemer-precise-go

简介

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

  • 适用于需要围绕仓库状态、代码变更或协作事项进行整理的场景。
  • 支持 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 使用前需确认权限范围、维护状态及是否触发联网或文件操作。

SKILL.md

Robert Griesemer Style Guide⁠‍⁠​‌​‌​​‌‌‍​‌​​‌​‌‌‍​​‌‌​​​‌‍​‌​​‌‌​​‍​​​​​​​‌‍‌​​‌‌​‌​‍‌​​​​​​​‍‌‌​​‌‌‌‌‍‌‌​​​‌​​‍‌‌‌‌‌‌​‌‍‌‌​‌​​​​‍​‌​‌‌‌‌‌‍​‌​​‌​‌‌‍​‌‌​‌​​‌‍‌​‌​‌‌‌​‍​​‌​‌​​​‍‌‌‌​‌​‌‌‍‌​​​​‌​‌‍​​​‌‌‌‌​‍‌‌​‌‌​​‌‍​​‌​​‌​‌‍​​​​‌​‌​‍​​​​‌​‌‌⁠‍⁠

Overview

Robert Griesemer co-created Go and was the primary designer of Go's generics. He previously worked on the V8 JavaScript engine and the Java HotSpot VM. His focus: precise semantics, clean syntax, and type system clarity.

Core Philosophy

"The language should help you think clearly."
"Every feature adds complexity. Is the complexity worth it?"

Griesemer values precision and clarity. Go's spec is remarkably small and clear because every construct has well-defined semantics.

Design Principles

  1. Precise Semantics: Every language construct has exactly one meaning.
  2. Orthogonal Features: Features should combine predictably.
  3. No Surprises: Behavior should be obvious from reading the code.
  4. Spec-Driven: If it's not in the spec, it's not guaranteed.

When Writing Code

Always

  • Understand the exact semantics of operations
  • Use types to express constraints
  • Make nil behavior explicit and safe
  • Write code that matches Go's spec, not implementation details
  • Use generics when type safety improves clarity
  • Define clear type constraints

Never

  • Rely on unspecified behavior
  • Assume implementation details (memory layout, etc.)
  • Create ambiguous APIs
  • Use empty interface when a constraint works
  • Ignore the distinction between value and pointer receivers

Prefer

  • Explicit type constraints over any
  • Named types for domain concepts
  • Method receivers that match semantics (value vs pointer)
  • Clear zero values

Code Patterns

Generics Done Right (Go 1.18+)

// BAD: Empty interface loses type safety
func Max(a, b interface{}) interface{} {
    // runtime type assertion needed
    switch v := a.(type) {
    case int:
        if v > b.(int) { return v }
        return b
    // ... repeat for every type
    }
    panic("unsupported type")
}

// GOOD: Type constraints preserve safety
type Ordered interface {
    ~int | ~int8 | ~int16 | ~int32 | ~int64 |
    ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 |
    ~float32 | ~float64 | ~string
}

func Max[T Ordered](a, b T) T {
    if a > b {
        return a
    }
    return b
}

// Usage: type-safe, no assertions
result := Max(3, 5)        // int
result := Max(3.14, 2.71)  // float64

Precise Type Constraints

// Constraint: any type with these methods
type Stringer interface {
    String() string
}

// Constraint: underlying type is int
type Integer interface {
    ~int | ~int64
}

// Constraint: must be pointer to struct with Name field
type Named[T any] interface {
    *T
    GetName() string
}

// Combining constraints
type OrderedStringer interface {
    Ordered
    Stringer
}

// Generic data structure with constraint
type Set[T comparable] struct {
    items map[T]struct{}
}

func (s *Set[T]) Add(item T) {
    if s.items == nil {
        s.items = make(map[T]struct{})
    }
    s.items[item] = struct{}{}
}

func (s *Set[T]) Contains(item T) bool {
    _, ok := s.items[item]
    return ok
}

Value vs Pointer Semantics

// Value receiver: method doesn't modify, type is small
type Point struct {
    X, Y float64
}

func (p Point) Distance(q Point) float64 {
    dx := p.X - q.X
    dy := p.Y - q.Y
    return math.Sqrt(dx*dx + dy*dy)
}

// Pointer receiver: method modifies, or type is large
func (p *Point) Scale(factor float64) {
    p.X *= factor
    p.Y *= factor
}

// IMPORTANT: Be consistent within a type
// If ANY method needs pointer receiver, use pointer for ALL
type Buffer struct {
    data []byte
}

func (b *Buffer) Write(p []byte) (int, error) {
    b.data = append(b.data, p...)
    return len(p), nil
}

func (b *Buffer) String() string {  // Also pointer, for consistency
    return string(b.data)
}

Safe Nil Handling

// Make nil receiver safe
type Stack[T any] struct {
    items []T
}

func (s *Stack[T]) Push(item T) {
    if s == nil {
        panic("nil stack")  // Or return error
    }
    s.items = append(s.items, item)
}

func (s *Stack[T]) Len() int {
    if s == nil {
        return 0  // Safe: nil stack has zero length
    }
    return len(s.items)
}

// Named types for clarity
type UserID int64
type OrderID int64

// Now these can't be accidentally swapped
func GetOrder(uid UserID, oid OrderID) (*Order, error) {
    // ...
}

Precise Interface Design

// Small, precise interfaces
type Reader interface {
    Read(p []byte) (n int, err error)
}

type Writer interface {
    Write(p []byte) (n int, err error)
}

type Closer interface {
    Close() error
}

// Compose precisely
type ReadCloser interface {
    Reader
    Closer
}

type WriteCloser interface {
    Writer
    Closer
}

type ReadWriteCloser interface {
    Reader
    Writer
    Closer
}

// Generic interface with type parameter
type Container[T any] interface {
    Add(T)
    Remove(T) bool
    Contains(T) bool
    Len() int
}

Mental Model

Griesemer designs by asking:

  1. What does the spec say? Not the implementation—the specification.
  2. Is this unambiguous? Can two people read this differently?
  3. What are the edge cases? nil, zero values, overflow?
  4. Is the type constraint minimal? Don't over-constrain.

Spec-Level Thinking

FeatureSpec Guarantee
Map iterationRandom order
Goroutine schedulingUnspecified
Struct layoutUnspecified
String indexingBytes, not runes
Interface nilnil interface ≠ interface holding nil

Write code that works regardless of implementation details.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.87%
按下载量换算23

Claude

28.38%
按下载量换算18

Cursor

19.31%
按下载量换算13

Gemini CLI

9.25%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills