ワンクリックで
database-query
Read-only database queries for MySQL and PostgreSQL inspection
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read-only database queries for MySQL and PostgreSQL inspection
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run Ansible ad-hoc commands and playbook operations
Headless browser automation via agent-browser (Playwright/Chromium) - navigate, snapshot, click, type, screenshot, eval, console
Query Datadog monitors, dashboards, and metrics
Query GitLab projects, merge requests, and CI pipelines
Query Harbor container image registry projects and artifacts
Manage Helm charts and releases on Kubernetes
| name | database-query |
| description | Read-only database queries for MySQL and PostgreSQL inspection |
| activation_keywords | ["database","db","sql","query","mysql","postgresql","postgres","table","select"] |
| execution_mode | server |
Provides read-only database query capabilities:
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:
postgres://USER:PASSWORD@HOST:5432/DATABASE(桌面端若未写 sslmode 会自动补上 sslmode=disable;若显式要求 SSL 如 require/verify-full,桌面工具会提示不支持,请改用其他客户端)USER:PASSWORD@tcp(HOST:3306)/DATABASEquery: 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.