Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

agent-sqlAgent SQL 搜索

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

294

周安装

12

GitHub Stars

1

下载量

95
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:agent-sql(Agent SQL 搜索)
来源仓库:https://github.com/shhac/agent-sql
仓库路径:skills/agent-sql
安装命令:
npx skills add https://github.com/shhac/agent-sql --skill agent-sql
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/shhac/agent-sql --skill agent-sql

简介

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。

  • 适合分析 schema、编写 SQL、排查查询问题或生成迁移建议。
  • 支持多种数据库类型,默认只读操作,输出为 JSONL 格式。
  • 涉及写入变更时需先 dry-run、备份或启用事务保护,避免误操作。
  • agent-sql 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

SQL database exploration with agent-sql

agent-sql is a read-only-by-default SQL CLI on $PATH. Supports PostgreSQL, CockroachDB, MySQL, MariaDB, SQLite, DuckDB, Snowflake, and MSSQL.

Query output goes to stdout as JSONL (one JSON object per line). Non-tabular output (schema, config, admin) uses a JSON envelope. Errors go to stderr as {"error": "...", "hint": "...", "fixable_by": "agent|human|retry"} with non-zero exit.

Quick start

Use -c with a file path, URL, or saved alias -- no setup needed for ad-hoc queries:

agent-sql run -c ./data.db 'SELECT * FROM users'                   # SQLite file (zero setup)
agent-sql run -c postgres://user:pass@host/db 'SELECT * FROM users' # PG URL (zero setup)
agent-sql run -c cockroachdb://user:pass@host:26257/db 'SELECT * FROM users' # CockroachDB URL
agent-sql run -c mysql://user:pass@host/db 'SELECT * FROM users'   # MySQL URL (zero setup)
agent-sql run -c mariadb://user:pass@host/db 'SELECT * FROM users' # MariaDB URL (zero setup)
agent-sql run -c snowflake://org-acct/mydb/public?warehouse=WH 'SELECT * FROM users' # Snowflake URL
agent-sql run -c ./analytics.duckdb 'SELECT * FROM events'         # DuckDB file (zero setup)
agent-sql run -c duckdb:// "SELECT * FROM 'data/*.parquet'"        # DuckDB in-memory (query files directly)
agent-sql run -c mssql://user:pass@host/db 'SELECT * FROM users'  # MSSQL URL (zero setup)
agent-sql run -c myalias 'SELECT * FROM users'                     # saved connection alias

For named connections, discover what's available:

agent-sql usage                          # full reference card
agent-sql connection list                # saved connections + display URLs + defaults
agent-sql connection test                # verify default connection works

Exploring a database

agent-sql schema tables                              # list all tables
agent-sql schema tables --include-system              # include system tables (PG)
agent-sql schema describe users                       # columns, types, nullability, defaults
agent-sql schema describe users --detailed             # add constraints, indexes, comments
agent-sql schema describe analytics.events            # PG namespace dot notation
agent-sql schema indexes                              # all indexes across all tables (not available for Snowflake)
agent-sql schema indexes users                        # indexes for a specific table
agent-sql schema constraints users                    # PKs, FKs, unique, check constraints
agent-sql schema constraints --type fk                # filter by constraint type
agent-sql schema search user                          # search table and column names
agent-sql schema dump                                 # full schema (all tables, columns, indexes, constraints)
agent-sql schema dump --tables users,orders           # dump specific tables only
agent-sql query sample users                          # 5 sample rows (default)
agent-sql query sample users --limit 10 --where "status = 'active'"

Querying data

agent-sql run "SELECT * FROM users WHERE age >= 21"                 # top-level shorthand
agent-sql query run "SELECT * FROM users WHERE age >= 21"           # equivalent
agent-sql query run "SELECT * FROM users" --limit 50                # override row limit
agent-sql query run "SELECT * FROM users" --compact                 # array-of-arrays (saves tokens)
agent-sql query explain "SELECT * FROM users WHERE email = 'a@b'"   # query plan
agent-sql query explain "SELECT * FROM users" --analyze             # EXPLAIN ANALYZE
agent-sql query count users                                         # total row count
agent-sql query count users --where "status = 'active'"             # filtered count

Writing data (requires permission)

Writes are blocked by default. The user must configure a credential with write permission. Then opt in per-query:

agent-sql run "INSERT INTO logs (msg) VALUES ('hello')" --write
agent-sql run "UPDATE users SET active = true WHERE id = 1" --write

If writes are blocked, the error will have "fixable_by": "human" -- do not retry, escalate to the user.

Truncation

Strings exceeding truncation.maxLength (default 200) are truncated with ... and an @truncated metadata object per row showing original lengths. @truncated is always present (null when no truncation).

agent-sql --full query run "SELECT * FROM posts"             # expand all fields
agent-sql --expand body query run "SELECT * FROM posts"      # expand specific field

These are global flags -- place them before or after the command.

Timeout

Default timeout is 30s (configurable via query.timeout). Override per-command:

agent-sql --timeout 60000 run "SELECT * FROM large_table"

Configuration

agent-sql config list-keys                           # all keys with defaults/ranges
agent-sql config set defaults.limit 50
agent-sql config get query.timeout
agent-sql config reset                               # restore defaults

Key settings: defaults.format (jsonl), defaults.limit (20), query.timeout (30000ms), query.maxRows (10000), truncation.maxLength (200).

Connection management

Connections are set up by the user. The agent can list and test but not add/remove/modify:

agent-sql connection list                            # saved connections + display URLs + defaults
agent-sql connection test                            # test default connection
agent-sql connection test -c prod                    # test specific connection
# Human-only setup examples:
# connection add mydb postgres://localhost:5432/myapp --credential pg-cred
# connection add local ./data.db

Connection resolution: -c flag > AGENT_SQL_CONNECTION env > config default > error listing available connections. The -c flag accepts aliases, file paths (.db, .duckdb), or URLs (postgres://, cockroachdb://, mysql://, mariadb://, duckdb://, snowflake://, mssql://, sqlserver://). DuckDB requires the duckdb CLI (brew install duckdb); duckdb:// with no path for in-memory mode (query Parquet/CSV/JSON files). Snowflake ad-hoc URLs use AGENT_SQL_SNOWFLAKE_TOKEN env var.

Credential entry — never paste secrets

If a user pastes a database password, PAT, or other secret into chat, do not put it into --password. The secret would land in your context window, transcripts, and any downstream telemetry. Instead, instruct the user to run the credential setup themselves so the secret stays out of the LLM:

# User runs this in their own terminal — a native OS popup appears for them to type into.
agent-sql credential add <name> [--username <u>] [--write] --form

--form opens a native dialog (macOS osascript, Linux zenity/kdialog, Windows Win32). The user types directly into the OS; the LLM only sees a redacted JSON receipt:

{"ok":true,"credential":"acme","username":"deploy","writePermission":false,"storage":"keychain","hint":"..."}

If --form cannot run (e.g. the user is SSH'd into a remote machine, or the host is headless), the CLI errors with fixable_by="human" and a hint pointing at the non-interactive fallback. Do not retry; surface the hint to the user.

The agent may set --username and --write on the user's behalf, but secret values must always come through --form or be typed by the user directly into their own terminal.

Safety

  • Read-only by default: writes require --write flag AND a credential with write permission
  • Defense in depth: PG/CockroachDB uses read-only transactions + keyword guard; MySQL/MariaDB uses START TRANSACTION READ ONLY + single-statement enforcement; SQLite uses OS-level SQLITE_OPEN_READONLY; DuckDB uses -readonly CLI flag; Snowflake uses keyword allowlist + MULTI_STATEMENT_COUNT=1; MSSQL uses keyword-based guard (server-side db_datareader role recommended)
  • Result cap: query.maxRows (default 10,000)
  • Timeout: query.timeout (default 30s), override per-command with --timeout <ms>

Error handling

Errors include a fixable_by field:

  • "agent" -- you can fix this (typo in table name, wrong syntax). Error includes valid alternatives.
  • "human" -- requires human action (permission change, credential setup). Do not retry.
  • "retry" -- transient error (timeout, connection lost). Worth retrying.

Per-command usage docs

Every command group has a usage subcommand with detailed, LLM-optimized docs:

agent-sql usage                    # top-level overview
agent-sql connection usage         # connection commands
agent-sql schema usage             # schema exploration commands
agent-sql query usage              # query commands
agent-sql config usage             # settings keys, defaults, validation

Use agent-sql <command> usage when you need deep detail on a specific domain before acting.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.53%
按下载量换算33

Claude

32.33%
按下载量换算31

Cursor

17.29%
按下载量换算16

Gemini CLI

9.24%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills