What problem does it solve? Working with PostgreSQL often requires looking up exact syntax, connection parameters, configuration options, and administration details scattered across hundreds of official documentation pages. This Skill consolidates that official documentation into an on-demand reference so you get accurate answers about SQL, libpq, indexing, and server management without leaving your workflow. ## Core Features & Use Cases - SQL and Query Reference: Covers aggregate functions, WHERE vs HAVING semantics, FILTER clauses, table inheritance, and indexing strategies drawn from the official PostgreSQL 18 docs. - Connection and Client Library Guidance: Details libpq connection functions (PQconnectdb, PQconnectStart/PQconnectPoll), connection string formats, URIs, multi-host failover, and parameter keywords. - Administration and Installation: Includes binary and source installation steps, platform-specific notes for macOS, Windows, and Solaris, and post-installation environment setup. - Use Case: When writing a query that needs per-aggregate filtering, consult the references to apply the FILTER clause correctly instead of misusing aggregates in a WHERE clause. ## Quick Start Ask how to write a PostgreSQL query using aggregate functions with GROUP BY and HAVING, and request the relevant official documentation details.