database-query

A read-only query tool for MySQL and PostgreSQL databases. It can run SELECT queries, inspect tables and indexes, check database statistics and connection details, and use EXPLAIN to examine query performance.

In plain words
What is it for?
Use it to look up database records, inspect schemas and indexes, review connection or size information, and investigate why a safe read query may be slow.
Why use it?
It lets an agent inspect data and database structure without changing records or schema. Write operations such as INSERT, UPDATE, DELETE, DROP, ALTER, and CREATE are blocked.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/fisker086/aiops/db_query
Any agent
npx skills add fisker086/AIOps --skill db_query
Clone the repo
git clone --depth 1 https://github.com/fisker086/AIOps

Made for: Claude Code, Codex.

Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 409 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00014 $0.00409
Opus 5 $0.00007 $0.00204
Sonnet 5 $0.00003 $0.00082
Haiku 4.5 $0.00001 $0.00041

Measured 3d ago against content hash 5fef21a40fa1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

database-query scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/db_query/SKILL.md · 29 lines

What it actually says

Database Query Skill

Provides read-only database query capabilities:

  • Execute SELECT queries on MySQL and PostgreSQL
  • Inspect table schemas and indexes
  • Check database statistics and connection info
  • Analyze query performance (EXPLAIN ... only when the whole statement is safe; avoid EXPLAIN on DDL)

Use builtin_db_query tool with fields:

  • driver: mysql, or postgres / postgresql / pgx (on the AgentSphere desktop, MySQL/PostgreSQL use embedded Rust drivers; you do not need psql or mysql installed on PATH)
  • dsn: connection string, for example:
    • PostgreSQL: postgres://USER:PASSWORD@HOST:5432/DATABASE(桌面端若未写 sslmode 会自动补上 sslmode=disable;若显式要求 SSL 如 require/verify-full,桌面工具会提示不支持,请改用其他客户端)
    • MySQL: USER:PASSWORD@tcp(HOST:3306)/DATABASE
  • query: SQL to execute (SELECT or EXPLAIN-only; see safety note below)
  • timeout: optional, query timeout in seconds (default: 10)

Note: Only SELECT and EXPLAIN forms that do not contain blocked substrings are allowed (INSERT, UPDATE, DELETE, DROP, ALTER, CREATE, etc. anywhere in the string will be rejected). INSERT, UPDATE, DELETE, DROP, ALTER, CREATE are blocked for safety.

Wrong DSN, blocked SQL, or TLS mismatch (e.g. server requires SSL but DSN uses sslmode=disable) will return an error in the tool result.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 29 lines · 14 tokens per session scan A 5fef21a40fa1

Subscribe to this mod's changes

database-query is a skill published in the GitHub repository fisker086/AIOps (21 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 14 tokens to every session and 409 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

db-repair

Auto-fix gbrain's Postgres access so the brain stays available. When any gbrain command or MCP tool result carries a GBRAINDBACCESS marker (or an operator reports the brain database is down), run the hardcoded gbrain db-repair ladder: diagnose, apply the safe tier, verify. The action is ALWAYS the hardcoded command …

garrytan/gbrain · 96 tokens

postgres-pro

Use when optimizing PostgreSQL queries, configuring replication, or implementing advanced database features. Invoke for EXPLAIN analysis, JSONB operations, extension usage, VACUUM tuning, performance monitoring.

Jeffallan/claude-skills · 41 tokens

postgres-database-migration

Use this skill for planning, testing, and safely executing PostgreSQL schema migrations — especially when working with production data or shared databases. Trigger when user asks to: Test a schema migration before applying it to production Add, remove, or rename columns safely on a live table Change a column's data…

timescale/pg-aiguide · 222 tokens

setup-timescaledb-hypertables

Use this skill when creating database schemas or tables for Timescale, TimescaleDB, TigerData, or Tiger Cloud, especially for time-series, IoT, metrics, events, or log data. Use this to improve the performance of any insert-heavy table. Trigger when user asks to: Create or design SQL schemas/tables AND…

timescale/pg-aiguide · 219 tokens

claimable-postgres

Provision instant temporary Postgres databases via Claimable Postgres by Neon (neon.new) with no login, signup, or credit card. Supports REST API, CLI, and SDK. Use when users ask for a quick Postgres environment, a throwaway DATABASEURL for prototyping/tests, or "just give me a DB now". Triggers include: "quick…

neondatabase/mcp-server-neon · 123 tokens

dsql

Build with Aurora DSQL — manage schemas, execute queries, handle migrations, diagnose query plans, diagnose cluster performance, load data, and develop applications with a serverless, distributed SQL database. Covers IAM auth, multi-tenant patterns, MySQL-to-DSQL and PostgreSQL-to-DSQL schema conversion, FK…

awslabs/agent-plugins · 227 tokens