PostgreSQL Read-Only Query Skill
Execute safe, read-only queries against configured PostgreSQL databases.
Requirements
- Python 3.8+
- psycopg2-binary:
pip install -r requirements.txt
Setup
Create connections.json in the skill directory or ~/.config/claude/postgres-connections.json.
Security: Set file permissions to 600 since it contains credentials:
chmod 600 connections.json
{
"databases": [
{
"name": "production",
"description": "Main app database - users, orders, transactions",
"host": "db.example.com",
"port": 5432,
"database": "app_prod",
"user": "readonly_user",
"password": "your-password",
"sslmode": "require"
}
]
}
Config Fields
| Field |
Required |
Description |
| name |
Yes |
Identifier for the database (case-insensitive) |
| description |
Yes |
What data this database contains (used for auto-selection) |
| host |
Yes |
Database hostname |
| port |
No |
Port number (default: 5432) |
| database |
Yes |
Database name |
| user |
Yes |
Username |
| password |
Yes |
Password |
| sslmode |
No |
SSL mode: disable, allow, prefer (default), require, verify-ca, verify-full |
Usage
List configured databases
python3 scripts/query.py --list
Query a database
python3 scripts/query.py --db production --query "SELECT * FROM users LIMIT 10"
List tables
python3 scripts/query.py --db production --tables
Show schema
python3 scripts/query.py --db production --schema
Limit results
python3 scripts/query.py --db production --query "SELECT * FROM orders" --limit 100
Database Selection
Match user intent to database description:
| User asks about |
Look for description containing |
| users, accounts |
users, accounts, customers |
| orders, sales |
orders, transactions, sales |
| analytics, metrics |
analytics, metrics, reports |
| logs, events |
logs, events, audit |
If unclear, run --list and ask user which database.
Safety Features
- Read-only session: Connection uses PostgreSQL
readonly=True mode (primary protection)
- Query validation: Only SELECT, SHOW, EXPLAIN, WITH queries allowed
- Single statement: Multiple statements per query rejected
- SSL support: Configurable SSL mode for encrypted connections
- Query timeout: 30-second statement timeout enforced
- Memory protection: Max 10,000 rows per query to prevent OOM
- Column width cap: 100 char max per column for readable output
- Credential sanitization: Error messages don't leak passwords
Troubleshooting
| Error |
Solution |
| Config not found |
Create connections.json in skill directory |
| Authentication failed |
Check username/password in config |
| Connection timeout |
Verify host/port, check firewall/VPN |
| SSL error |
Try "sslmode": "disable" for local databases |
| Permission warning |
Run chmod 600 connections.json |
Exit Codes
- 0: Success
- 1: Error (config missing, auth failed, invalid query, database error)
Workflow
- Run
--list to show available databases
- Match user intent to database description
- Run
--tables or --schema to explore structure
- Execute query with appropriate LIMIT
1---2name: workspace-postgres3description: Execute read-only SQL queries against multiple PostgreSQL databases. Use when: (1) querying PostgreSQL databases, (2) exploring database schemas/tables, (3) running SELECT queries for data analysis, (4) checking database contents. Supports multiple database connections with descriptions for intelligent auto-selection. Blocks all write operations (INSERT, UPDATE, DELETE, DROP, etc.) for safety.4license: Apache-2.05---6
7# PostgreSQL Read-Only Query Skill
8
9Execute safe, read-only queries against configured PostgreSQL databases.
10
11## Requirements
12
13- Python 3.8+
14- psycopg2-binary: `pip install -r requirements.txt`
15
16## Setup
17
18Create `connections.json` in the skill directory or `~/.config/claude/postgres-connections.json`.
19
20**Security**: Set file permissions to `600` since it contains credentials:
21```bash
22chmod 600 connections.json
23```
24
25```json
26{
27 "databases": [
28 {
29 "name": "production",
30 "description": "Main app database - users, orders, transactions",
31 "host": "db.example.com",
32 "port": 5432,
33 "database": "app_prod",
34 "user": "readonly_user",
35 "password": "your-password",
36 "sslmode": "require"
37 }
38 ]
39}
40```
41
42### Config Fields
43
44| Field | Required | Description |
45|-------|----------|-------------|
46| name | Yes | Identifier for the database (case-insensitive) |
47| description | Yes | What data this database contains (used for auto-selection) |
48| host | Yes | Database hostname |
49| port | No | Port number (default: 5432) |
50| database | Yes | Database name |
51| user | Yes | Username |
52| password | Yes | Password |
53| sslmode | No | SSL mode: disable, allow, prefer (default), require, verify-ca, verify-full |
54
55## Usage
56
57### List configured databases
58```bash
59python3 scripts/query.py --list
60```
61
62### Query a database
63```bash
64python3 scripts/query.py --db production --query "SELECT * FROM users LIMIT 10"
65```
66
67### List tables
68```bash
69python3 scripts/query.py --db production --tables
70```
71
72### Show schema
73```bash
74python3 scripts/query.py --db production --schema
75```
76
77### Limit results
78```bash
79python3 scripts/query.py --db production --query "SELECT * FROM orders" --limit 100
80```
81
82## Database Selection
83
84Match user intent to database `description`:
85
86| User asks about | Look for description containing |
87|-----------------|--------------------------------|
88| users, accounts | users, accounts, customers |
89| orders, sales | orders, transactions, sales |
90| analytics, metrics | analytics, metrics, reports |
91| logs, events | logs, events, audit |
92
93If unclear, run `--list` and ask user which database.
94
95## Safety Features
96
97- **Read-only session**: Connection uses PostgreSQL `readonly=True` mode (primary protection)
98- **Query validation**: Only SELECT, SHOW, EXPLAIN, WITH queries allowed
99- **Single statement**: Multiple statements per query rejected
100- **SSL support**: Configurable SSL mode for encrypted connections
101- **Query timeout**: 30-second statement timeout enforced
102- **Memory protection**: Max 10,000 rows per query to prevent OOM
103- **Column width cap**: 100 char max per column for readable output
104- **Credential sanitization**: Error messages don't leak passwords
105
106## Troubleshooting
107
108| Error | Solution |
109|-------|----------|
110| Config not found | Create `connections.json` in skill directory |
111| Authentication failed | Check username/password in config |
112| Connection timeout | Verify host/port, check firewall/VPN |
113| SSL error | Try `"sslmode": "disable"` for local databases |
114| Permission warning | Run `chmod 600 connections.json` |
115
116## Exit Codes
117
118- **0**: Success
119- **1**: Error (config missing, auth failed, invalid query, database error)
120
121## Workflow
122
1231. Run `--list` to show available databases
1242. Match user intent to database description
1253. Run `--tables` or `--schema` to explore structure
1264. Execute query with appropriate LIMIT