skills/go/bill-go-code-review-performance/SKILL.md
Use when reviewing performance risks in Go backend/service code, including hot-path work, blocking I/O, query-shape issues, inefficient DB/network access, marshaling overhead, buffering, goroutine churn, and resource waste. Use when user mentions performance, N+1, allocation churn, goroutine storm, or marshaling overhead in Go.
npx skillsauth add sermilion/mobile-development-plugin bill-go-code-review-performanceInstall 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.
Review only high-impact performance issues.
Litmus test before reporting: Would a user or operator ever notice this in production? Does it cause latency spikes, throughput collapse, memory pressure, queue backlog, or operational cost growth? If neither, skip it.
Apply shared performance rules to backend/service code. Apply the deeper DB/query-shape, marshaling, and worker-path checks only when the changed code uses those mechanisms.
If .agents/skill-overrides.md exists in the project root and contains a ## bill-go-code-review-performance
section, read that section and apply it as the highest-priority instruction for this skill. The matching section may
refine or replace parts of the default workflow below.
If an AGENTS.md file exists in the project root, apply it as project-wide guidance.
Precedence for this skill: matching .agents/skill-overrides.md section > AGENTS.md > built-in defaults.
file:line evidence for each finding.Blocker | Major | MinorHigh | Medium | LowEvery finding must use this exact bullet format for downstream tooling:
- [F-001] <Severity> | <Confidence> | <file:line> | <description>
Do NOT use markdown tables, numbered lists, or any other format for findings.
development
Use when running a governed editorial assignment desk from Readian recommendations through candidate selection and source-backed story packs.
testing
Use when reviewing unit tests in a file, current changes, or a commit to flag low-value, tautological, or coverage-only tests that do not validate real behavior. Use when user mentions check test quality, review tests, tautological tests, weak tests, or coverage-padding.
data-ai
Use when removing an existing skill or platform skill set and cleaning up agent installs, manifests, and supporting links.
development
Use when you want a generic quality-check entry point that detects the dominant stack in scope and delegates to the matching stack-specific quality-check skill. Use when user mentions run checks, validate, lint, format, quality check, or run quality.