What problem does it solve?
Working with CloudBase PostgreSQL from an AI coding session requires knowing which MCP tools to call, how to inspect schemas safely, and how to avoid destructive writes without confirmation. This Skill encodes those rules so database operations follow the correct CloudBase conventions.
Core Features & Use Cases
- Read Operations: Use
queryPgDatabase with actions like context, objects, metadata, schema, and sql to inspect database structure and run read queries.
- Safe Writes and DDL: Use
managePgDatabase with action=execute and mandatory confirm=true so schema changes and writes are never executed silently.
- Runtime Awareness: Enforces PostgreSQL tooling when
RuntimeMode is postgresql, preventing accidental use of MySQL tools, and prefers public.<table> qualified names.
- Use Case: While building an app on CloudBase, ask the AI to inspect a table's schema and add a new column; the Skill ensures the schema is read first and the DDL runs only with explicit confirmation.
Quick Start
Ask the AI to inspect the schema of the public.users table in my CloudBase PostgreSQL database and then add an email column with my confirmation.