database

Create and query Replit PostgreSQL databases with read-only production access.

Updated Mar 19, 2026
One-click install
npx skills add https://github.com/hajrasarwar11/DataBase-Engine-with-AI --skill database-hajrasarwar11
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: database
Source: https://github.com/hajrasarwar11/DataBase-Engine-with-AI/tree/main/.local/skills/database
Command: npx skills add https://github.com/hajrasarwar11/DataBase-Engine-with-AI --skill database-hajrasarwar11

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Create and manage Replit's built-in PostgreSQL databases, check status, execute SQL queries with safety checks, and run read-only queries against production. Use when the user wants to check prod data, debug database issues in production, or asks to "check the prod db", "query production", "look at live data", or "see what's in the database on the deployed app".

Core Features & Use Cases

  • Create and verify a PostgreSQL database for a project or environment.
  • Run queries against development or production (read-only) databases, with safety checks to prevent destructive actions.
  • Read from data warehouses (BigQuery, Databricks, Snowflake) as needed.

Quick Start

Create a PostgreSQL database for your project and begin safely querying development or production data.

Frequently Asked Questions about database

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

FAQPage Schema
How do I safely query a production PostgreSQL database?

To safely query a production PostgreSQL database, use read-only access to inspect live data. This enforces environment isolation and parameterized queries to prevent destructive operations. It protects data while debugging deployed apps.

What is the best way to manage built-in PostgreSQL databases in development?

The best way to manage built-in PostgreSQL databases is by provisioning them directly within your environment. You can check provisioning status, create databases, and execute SQL queries with safety checks to prevent accidental data loss.

Does this approach support running SQL queries against data warehouses like BigQuery or Snowflake?

Yes, you can run read queries against data warehouses like BigQuery, Databricks, and Snowflake. This allows you to inspect data across different systems while maintaining the same safety checks and environment isolation.

Can I execute destructive SQL queries against my live data?

No, you cannot execute destructive SQL queries against live data. The system enforces read-only production access and parameterized queries to protect data, preventing destructive operations from impacting deployed apps.