postgres

Installation
SKILL.md

psql

Use psql to interact with PostgreSQL databases.

Common Commands

Connection

  • Connect: psql "postgresql://user:password@host:port/dbname"
  • Connect with env var: psql "${DATABASE_URL}"

Inspection

  • List databases: \l
  • List tables: \dt
  • Describe table: \d <table_name>
  • List schemas: \dn
Installs
1
GitHub Stars
2
First Seen
Jul 8, 2026
postgres — fworks-tech/agenthood