postgres
2
总安装量
2
周安装量
#65278
全站排名
安装命令
npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill postgres
Agent 安装分布
openclaw
2
gemini-cli
2
antigravity
2
claude-code
2
github-copilot
2
codex
2
Skill 文档
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