Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

sql-plannerSQL planner 搜索

Agent Skill

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

总安装

291

周安装

12

GitHub Stars

公开资料未说明

下载量

95
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wilmanbarrios/skills --skill sql-planner

简介

解析查询执行计划,可视化展示数据库内部处理流程。

  • 帮助理解优化器决策依据及潜在瓶颈位置。
  • 支持对比不同写法下的计划差异。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 需注意不同 DBMS 的计划表示方式可能存在差异。
  • sql-planner 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Claim Conditions

This skill is the entry point for any data question expressed in natural language.

I claim when:

  • User asks a question about data in natural language (English or Spanish): "how many", "count", "list", "show", "verify", "check", "find", "cuantos", "traeme", "muéstrame"
  • User mentions a database table or business entity (users, subscriptions, sessions, etc.)
  • User asks about data in ANY environment (production, staging, dev, local)

I do NOT claim when:

  • User provides a complete SQL query ready to execute
  • User asks to create a connector (use /sql-planner:connector instead)

Input

$ARGUMENTS = natural language describing what data the user wants.

Step 1 — Gather Context

Run these tasks in parallel where possible:

Phase A (parallel):

1a. Detect DB Connection & Engine

Auto-detect the local database connection from the project:

  1. docker-compose.yml / compose.yml:

- mysql/mariadb image → docker compose exec <service> mysql -u <user> -p<pass> <dbname> --table -e "{sql}" - postgres image → docker compose exec <service> psql -U <user> -d <dbname> -c "{sql}"

  1. Django DATABASES setting → build CLI command from ENGINE/HOST/NAME/USER/PASSWORD
  2. Rails config/database.yml → extract dev config
  3. db.sqlite3 existssqlite3 db.sqlite3 "{sql}"
  4. Can't detect → ask the user

From the detected engine, infer the SQL dialect (MySQL, PostgreSQL, SQLite).

1b. Discover Connector

Check if .claude/sql-planner/config.md exists in the current project directory.

  1. If found → read it for engine, environments, domain knowledge
  2. If the user asks for a remote environment and NO connector exists → inform them and suggest: /sql-planner:connector

1c. Read Schema Cache

If .claude/sql-planner/schema.tsv exists, read it and extract the # count:<N> metadata from the first line. Otherwise, note that schema needs to be generated.

Phase B (after 1a completes):

1d. Validate or Generate Schema

Using the DB connection from 1a and the cache state from 1c:

  1. If cache exists → execute a quick column count against the DB and compare with N. If differs → regenerate; if matches → use cache.
  2. If cache does NOT exist → generate from INFORMATION_SCHEMA / .schema and save with metadata count.

Schema generation commands:

MySQL:

SELECT TABLE_NAME, GROUP_CONCAT(CONCAT(COLUMN_NAME, ' ', COLUMN_TYPE, IF(COLUMN_KEY='PRI',' PK',''), IF(COLUMN_KEY='MUL',' FK',''), IF(COLUMN_KEY='UNI',' UQ','')) ORDER BY ORDINAL_POSITION SEPARATOR ', ') FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = DATABASE() GROUP BY TABLE_NAME ORDER BY TABLE_NAME;

PostgreSQL:

SELECT table_name, string_agg(column_name || ' ' || data_type, ', ' ORDER BY ordinal_position) FROM information_schema.columns WHERE table_schema = 'public' GROUP BY table_name ORDER BY table_name;

SQLite:

.schema

Autonomy principle: resolve everything possible without asking. But if something is genuinely ambiguous or cannot be inferred with certainty, ask the user — it's better to confirm than to assume wrong.

Step 2 — Generate SQL

  • Translate natural language → SQL using schema + domain knowledge from connector (if exists) + correct dialect
  • LIMIT 25 by default unless the user explicitly asks for all rows
  • Use readable column aliases for cryptic column names

Step 3 — Confirm & Execute

Apply these rules based on the query type and target environment:

  • READ-ONLY + local → show the SQL and execute directly, no confirmation needed
  • READ-ONLY + remote → use AskUserQuestion to confirm the target environment before executing
  • Write operation (INSERT, UPDATE, DELETE, DROP, ALTER, TRUNCATE, CREATE)show the generated SQL only. Do NOT execute. Explain that this skill does not execute write operations — the user can copy and run the query themselves.

When executing read queries against a remote environment, use the connection command from the connector's ## Environments section, replacing {sql} with the generated query.

Step 4 — Display Results

Format and show the output to the user.

Safety Rules

  • Read-only execution. This skill only executes SELECT queries.
  • Write queries (INSERT, UPDATE, DELETE, DROP, ALTER, TRUNCATE, CREATE) are generated and shown but never executed.
  • Never generate DROP DATABASE
  • Always show the SQL before executing
  • Remote environments: confirm target before executing

Schema Maintenance

  • If a table or column referenced in the prompt is not found in the schema → regenerate automatically
  • After regeneration, save the updated schema to .claude/sql-planner/schema.tsv with the new # count:<N> metadata line

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.43%
按下载量换算37

Claude

29.09%
按下载量换算28

Cursor

20.07%
按下载量换算19

Gemini CLI

8.51%
按下载量换算8

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/wilmanbarrios/skills --skill sql-planner 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills