harness/plugins/go-tools/claude/skills/go-understanding/SKILL.md
Comprehensive analysis of unfamiliar Go packages — structure, public API, dependencies, coding patterns. Use when exploring a new package or preparing for complex refactoring.
npx skillsauth add popoffvg/dotfiles go-understandingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Systematic workflow for understanding Go codebases before making modifications.
Use when:
Skip when:
Always choose the specific package you want to work with, then:
Read package documentation in order:
doc.go - Package documentation and examplesindex.out - Generated documentation indexREADME.md - Project-specific informationReport documentation usefulness:
index.out or doc.go, report itUse gopls MCP tools for comprehensive analysis:
# Understand workspace structure
mcp__gopls__go_workspace
# Find relevant symbols and patterns
mcp__gopls__go_search "pattern"
# Get detailed file context
mcp__gopls__go_file_context "/path/to/file.go"
# Understand package API
mcp__gopls__go_package_api "package/path"
Read target files with focus on:
Read tests to understand:
Summarize your findings:
This understanding phase should be used before:
go-modify - For code modificationsgo-test-debug - For test debugginggo-debug - For debugging workflowsdoc.go - Always read firstindex.out - Generated docsREADME.md - Project contextgo_workspace - Structure overviewgo_search - Find symbolsgo_file_context - Detailed analysisgo_package_api - Interface understanding.claude/rules/go-coding.md for project-specific conventionsEval checklist:
Test inputs:
Can change: analysis workflow, output structure, depth of dependency analysis, pattern categorization Cannot change: skip-when criteria (single file, familiar code), read-only nature, four-dimension coverage Min sessions before eval: 5 Runs per experiment: 3
testing
Use when the user asks to create test sets, enumerate scenarios, generate edge cases, or draft a coverage matrix before implementation.
testing
Use when the user asks to review, audit, score, or validate test sets for missed cases before execution or merge.
tools
Test harness plugins in isolation using tmux panes. Runs MCP servers, unit tests, typecheck, and Claude plugin loading. Use when user says "test plugin", "check plugin", "run plugin tests", "validate plugin", or names a specific plugin to test.
development
Guide for designing integration and e2e tests using BDD (Behavior-Driven Development) methodology with Cucumber-style Given/When/Then scenarios. Use when writing or reviewing tests for any service, API, or component. Language-agnostic — covers scenario structure, step notation, assertion principles, async patterns, and common anti-patterns.