postgres
✓Verified·Scanned 2/17/2026
PostgreSQL database management. Run queries, manage schemas, and monitor performance.
from clawhub.ai·ve5a3b31·816 B·0 installs
Scanned from 1.1.0 at e5a3b31 · Transparency log ↗
$ vett add clawhub.ai/0xterrybit/postgres
PostgreSQL 🐘
PostgreSQL database management.
Setup
export DATABASE_URL="postgresql://user:pass@localhost:5432/dbname"
Features
- SQL query execution
- Schema management
- Index optimization
- Backup and restore
- Performance monitoring
- Extensions management
Usage Examples
"Show all tables"
"Run query: SELECT * FROM users"
"Create index on email column"
"Show slow queries"
Commands
psql "$DATABASE_URL" -c "SELECT * FROM users LIMIT 10"
Safety Rules
- ALWAYS confirm before destructive operations
- BACKUP before schema changes