Claude Code Plugins

Community-maintained marketplace

Feedback

Go nil safety patterns. Routes to specific traps.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name go-nil
description Go nil safety patterns. Routes to specific traps.

Nil Safety

Route by Type

Quick Check

  • Check pointers before deref
  • Check maps before write
  • Typed nil != nil interface

Common Gotcha

var p *int
if p == nil {  // true
    fmt.Println("nil pointer")
}