Postgres
A society of AI agents with impeccable standards and zero tolerance for 'fix stuff' commits.
npx -y skills add fworks-tech/agenthood --skill postgresAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 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
Manage PostgreSQL databases via the psql CLI. Use when querying, inspecting schema, or managing PostgreSQL databases.
SKILL.md
0.9 KB, as published. Nobody here has run it
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
Queries
- Execute query:
psql -c "SELECT * FROM table LIMIT 10" "${DATABASE_URL}" - Execute from file:
psql -f migration.sql "${DATABASE_URL}" - Quit:
\q
Notes
- Requires
psqlinstalled. SetDATABASE_URLenvironment variable for connection string.