From sundial-org-awesome-openclaw-skills-4
Manages PostgreSQL databases: run SQL queries, manage schemas, optimize indexes, perform backup/restore, monitor performance, and handle extensions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:postgresThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
PostgreSQL database management.
PostgreSQL database management.
export DATABASE_URL="postgresql://user:pass@localhost:5432/dbname"
"Show all tables"
"Run query: SELECT * FROM users"
"Create index on email column"
"Show slow queries"
psql "$DATABASE_URL" -c "SELECT * FROM users LIMIT 10"
npx claudepluginhub sundial-org/awesome-openclaw-skillsGuides PostgreSQL operations: schema design, index selection (B-tree/GIN/GiST/BRIN), query tuning (EXPLAIN ANALYZE), backups (pg_dump/pg_basebackup), replication, vacuum tuning, monitoring (pg_stat_statements), RLS, extensions (PostGIS/timescaledb).
Reference guide for psql (PostgreSQL interactive terminal) covering connection methods, backslash commands, database inspection, and data import/export.
PostgreSQL 16+ reference for writing SQL queries (SELECT, CTEs, windows), designing schemas, creating indexes (B-tree, GIN), managing transactions, using JSONB, analyzing with EXPLAIN ANALYZE, and psql CLI.