database

Provision PostgreSQL databases and run read-only SQL queries with environment isolation.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/CRAJKUMARSINGH/M3_Bridge --skill database-crajkumarsingh
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: database
Source: https://github.com/CRAJKUMARSINGH/M3_Bridge/tree/main/.local/skills/database
Command: npx skills add https://github.com/CRAJKUMARSINGH/M3_Bridge --skill database-crajkumarsingh

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Provision and manage PostgreSQL databases with safe, guided queries to prevent misconfigurations and data loss.

Core Features & Use Cases

  • Create and verify PostgreSQL databases for projects.
  • Check provisioning status and connect to development or production-like replicas with read-only policies.
  • Run safe SQL queries with environment isolation and built-in protective rules.

Quick Start

Create a database for your project and run a simple SELECT to verify connectivity.

Frequently Asked Questions about database

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I safely run SQL queries against a production PostgreSQL database?

Safely run SQL queries against a production PostgreSQL replica by enforcing read-only constraints and environment isolation. This approach blocks destructive operations, prevents data loss, and returns structured execution results.

What is the best way to provision a new PostgreSQL database for a project?

Provision a new PostgreSQL database by using a guided process that creates the database and verifies its provisioning status. This ensures safe configuration management and confirms connectivity before you run any application workloads.

How does environment isolation protect PostgreSQL databases during development?

Environment isolation protects PostgreSQL databases by separating development and production-like replicas. It applies read-only policies to production-like environments and blocks destructive operations, ensuring misconfigurations in development do not impact live data.

Can I check the provisioning status of a PostgreSQL database before running queries?

You can check the provisioning status of a PostgreSQL database before running queries. The process verifies database availability and connectivity, returning structured status results to confirm the environment is ready for safe SQL execution.

Will this block destructive SQL operations like DROP or DELETE on production replicas?

It blocks destructive SQL operations like DROP or DELETE on production-like replicas by enforcing built-in protective rules. Environment isolation and read-only constraints actively prevent these unsafe commands to eliminate data loss risks.