query-database
Run a read-only SQL query against the product database and return results.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run a read-only SQL query against the product database and return results.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Read rows and columns from a CSV or Excel file and return the contents.
Produce a formatted markdown summary or chart description from structured data.
Make targeted, minimal edits to source files to implement a change or fix a bug.
Search for and read source files in the project to understand existing code.
Execute the project test suite and interpret pass/fail results.
Draft a new post from an outline, brief, or topic description.
| name | Query Database |
| description | Run a read-only SQL query against the product database and return results. |
Use this skill when the user asks a question that requires fetching data from the database.
Steps
references/data-sources/data-dictionary.md if you're unsure which table or column to use.SELECT statement. Never use INSERT, UPDATE, DELETE, or DROP.scripts/run_query.py with the SQL as a positional argument.Script: scripts/run_query.py "<sql>"
Environment variables required
DB_HOST — database hostnameDB_NAME — database nameDB_USER — read-only database userDB_PASSWORD — password for the read-only user