What problem does it solve? Choosing the right Go library is hard: the ecosystem is large, some popular libraries are deprecated or unmaintained, and full frameworks are often overkill when the standard library already covers the use case. This Skill guides AI coding agents to recommend mature, production-ready Go libraries while always checking whether the standard library is sufficient first. ## Core Features & Use Cases - Curated library catalog: Vetted third-party libraries organized by category — web frameworks, database drivers, ORMs, testing, logging, messaging, caching, and more. - Standard library first: Covers new stdlib packages (slices, maps, log/slog, math/rand/v2) and golang.org/x extensions so external dependencies are only added when they provide clear value. - Anti-pattern detection: Warns against abandoned libraries (e.g., Logrus), unnecessary stdlib wrappers, and heavy frameworks for simple needs. - Use Case: When a developer asks "which PostgreSQL driver should I use?", the Skill recommends pgx over lib/pq, explains why, and notes maintenance status — instead of defaulting to whatever appears most in tutorials. ## Quick Start Ask the agent which Go library to use for a specific task, such as "What should I use for structured logging in my Go 1.22 project?"