database

Manage PostgreSQL provisioning and execute SQL queries with environment safety checks.

Updated Apr 25, 2026
One-click install
npx skills add https://github.com/naopensedoit2-design/Claramente-nao-sou-um-Escritor --skill database-naopensedoit2-design
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: database
Source: https://github.com/naopensedoit2-design/Claramente-nao-sou-um-Escritor/tree/main/.local/skills/database
Command: npx skills add https://github.com/naopensedoit2-design/Claramente-nao-sou-um-Escritor --skill database-naopensedoit2-design

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you verify that your PostgreSQL database is provisioned and accessible, then run the exact SQL you need without risking unsafe writes—especially when inspecting live production data.

Core Features & Use Cases

  • Provisioning & connectivity checks: Confirm the database exists and is reachable before attempting work.
  • Safe SQL execution with environment controls: Run development queries normally, while production queries are restricted to READ-ONLY SELECT operations.
  • Production/live debugging support: Help answer requests like “check the prod db”, “query production”, or “look at live data” with guardrails that prevent destructive actions and Stripe-table tampering.

Quick Start

Ask: "Check whether the production database is accessible, then run a read-only query to list the most recent rows from the relevant table."

Frequently Asked Questions about database

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

FAQPage Schema
How do I run read-only SQL queries against a production PostgreSQL database?

You can run read-only SQL queries against a production PostgreSQL database by using this Skill to execute SELECT-only operations. It enforces environment isolation and blocks destructive mutations, allowing you to safely inspect live data.

How can I check if my PostgreSQL database is provisioned and accessible?

Check if your PostgreSQL database is provisioned and accessible by performing a status check. This Skill verifies database existence and connectivity, returning a structured success or error output before you attempt further queries.

Can I execute mutating SQL statements on my development database using Replit?

Yes, you can execute mutating SQL statements on your development database using Replit. The Skill runs development queries normally without restrictions, while applying safety checks and isolation only to production environments.

What happens if I try to run destructive queries on production data?

If you try to run destructive queries on production data, the execution is blocked. The Skill performs destructive query safety checks and enforces production read-only constraints, specifically preventing prohibited Stripe table mutations.

Is there a way to sample warehouse data during SQL querying for production debugging?

Yes, you can sample warehouse data during SQL querying for production debugging. The Skill supports running warehouse queries with optional sampling to help you inspect live data safely without retrieving full tables.