Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions plugins/shared/skills/resources_postgresql/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ description: Implements PostgreSQL connections, SQL queries, and migration patte

- `mcp__resources__postgresql_psql` — Execute read-only SQL queries and psql backslash commands (`\dt`, `\d`, `\di`, `\df`, etc.). Args: `resourceId`, `command`, `timeoutMs?`
- `mcp__resources__postgresql_invoke` — Execute write SQL against managed or external PostgreSQL resources. Args: `resourceId`, `sql`, `params?`, `timeoutMs?`, `description`
- `run_migration` on the platform MCP server — Run tracked migrations on an application's managed database in app-building/orchestrator sessions. Args: `applicationId`, `migration`, `description`

## TypeScript Client

Expand All @@ -50,7 +49,6 @@ if (result.ok) {

- Use parameterized queries (`$1`, `$2`, ...) — never interpolate values into SQL strings
- `psql` is read-only; use `postgresql_invoke` for data modifications against managed or external PostgreSQL resources
- Use `run_migration` for tracked schema migrations on an application's managed database
- The TypeScript client supports full read/write operations regardless of managed status
- Use `psql` exclusively for read-only tasks. Never use invoke for read only.

Expand Down
Loading