Error handling
Production-ready Go code review skill for AI agents based on authoritative sources
npx -y skills add saifoelloh/golang-best-practices-skill --skill error-handlingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 16 stars16 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Unified Go + GORM + PostgreSQL error handling review. Covers error wrapping, context propagation, PostgreSQL error codes (23505, 40001), errors.Is/As mapping, and retry logic. Ensures proper error chains and robust database failure recovery.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
3.2 KB, as published. Nobody here has run it
Error Handling (Unified Go & DB)
Expert-level review for error handling in Go services using GORM and PostgreSQL. Ensures errors are correctly identified, preserved via wrapping, mapped to domain errors, and retried where appropriate.
When to Apply
Use this skill when:
- Reviewing general Go error propagation and context usage
- Debugging database errors (e.g., duplicate keys, serialization failures)
- Auditing error wrapping with
%wvs%v - Ensuring correct use of
errors.Is/errors.As - Adding retry logic for serializable transactions or deadlocks
Rule Categories
| Priority | Count | Focus |
|---|---|---|
| CRITICAL | 6 | error chains, context leaks, PgError mapping, retries |
| HIGH | 6 | propagation, Is/As usage, RowsAffected, deadlock detection |
| MEDIUM | 2 | sentinel errors, structured logging |
Rules Covered (14 total)
Critical Issues (6)
critical-error-wrapping— Use%w, not%v, to preserve error chainscritical-context-leak— Alwaysdefer cancel()after context creationcritical-error-shadow— Don't shadowerrin nested scopescritical-errors-is-as— Useerrors.Is/Asfor DB and wrapped errorscritical-pg-error-mapping— Map Postgres codes to domain errors at repo boundarycritical-serialization-retry— Retry transactions on40001serialization failure
High-Impact Patterns (6)
high-context-propagation— Propagate context through the call chainhigh-error-is-as— Prescriptive rule for using Is/As over string matchinghigh-interface-nil— Check for nil in interfaces correctlyhigh-rows-affected— CheckRowsAffectedafter Update/Deletehigh-wrap-with-context— Wrap DB errors with operation contexthigh-deadlock-detection— Handle40P01deadlocks as retryable
Medium Improvements (2)
medium-sentinel-error-usage— Use sentinel errors for stable categoriesmedium-structured-logging— Log DB/Go errors with structured fields
Trigger Phrases
- "Review error handling"
- "Debug this DB error"
- "23505 / 40001 / 40P01"
- "Check for context leaks"
- "Review error chains"
- "Transaction retry"
- "ErrRecordNotFound"
Output Format
## Critical Issues Found: X
### [Rule ID] (Line Y)
**Issue**: Description
**Impact**: Context leak / Lost chain / Data inconsistency
**Fix**: Suggested code
**Example**:
```go
// Corrected code
## Related Skills
- [gorm-query-patterns](../gorm-query-patterns/SKILL.md) — For `.Error` check safety
- [concurrency-safety](../concurrency-safety/SKILL.md) — For context timeout patterns