원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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.