Loading...
Loading...
PostgreSQL database management. Run queries, manage schemas, and monitor performance.
npx skill4agent add sundial-org/awesome-openclaw-skills postgresexport 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"