AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Sql Query

skill-mateaix-mateclaw-sql-query · by mateaix

当用户提出数据查询需求(如'查数'、'查一下订单量'、'有多少用户'、'帮我跑个SQL'等),使用数据源工具发现表结构,生成并执行只读 SQL 查询。

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-mateaix-mateclaw-sql-query

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mateaix-mateclaw-sql-query)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Sql Query? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

SQL 查询技能

当用户提出与数据查询相关的问题时,按照以下工作流程操作。

工作流程

第一步:发现数据源

调用 query_datasource(action='list_datasources') 查看所有可用的外部数据源。

  • 如果只有一个数据源,直接使用它
  • 如果有多个数据源,根据用户问题推断最相关的数据源;不确定时询问用户

第二步:发现表结构

调用 query_datasource(action='list_tables', datasourceId=) 查看数据源中的表列表。

  • 根据表名和注释判断与用户问题相关的表
  • 不要一次查看所有表的结构,只查看相关的 2-3 张表

第三步:查看列详情

调用 query_datasource(action='describe_table', datasourceId=, tableName='') 查看列名、类型和注释。

  • 记住列名和类型,生成 SQL 时必须使用正确的列名

第四步:生成 SQL

根据表结构和用户问题,生成 SELECT SQL。遵循以下规则:

SQL 生成规则:

  1. 仅生成 SELECT 语句,绝不生成 INSERT/UPDATE/DELETE/DROP 等写操作
  2. 多表查询时,所有字段必须用表别名限定(如 t1.name
  3. 聚合查询使用 COUNT/SUM/AVG/MAX/MIN 等函数
  4. 时间过滤使用数据库对应的日期函数
  5. 字符串匹配使用 LIKE 并注意大小写
  6. 结果默认按合理的顺序排序(如时间倒序)
  7. 系统会自动注入 LIMIT 500,无需手动添加(除非用户指定了数量)

不同数据库的注意事项:

  • MySQL:日期用 DATE_FORMAT()NOW(),字符串连接用 CONCAT()
  • PostgreSQL:日期用 TO_CHAR()NOW(),字符串连接用 ||
  • ClickHouse:日期用 toDate()today(),注意不支持部分标准 SQL 语法

第五步:执行查询

调用 execute_sql(datasourceId=, sql='') 执行查询。

第六步:解读结果

  • 用自然语言总结查询结果的要点
  • 如果结果为空,分析可能的原因(表名/列名/条件有误等)
  • 如果需要,可以调整 SQL 重新查询
  • 如果查询结果包含数值列,系统会自动生成 ECharts 图表,无需你手动生成图表代码
  • 重要:不要使用 write_file 工具生成 HTML 图表文件,系统已内置图表渲染能力

错误处理

如果 SQL 执行失败:

  1. 仔细阅读错误信息
  2. 常见原因:列名拼写错误、类型不匹配、语法错误
  3. 根据错误修正 SQL 并重试一次
  4. 如果仍然失败,向用户说明错误原因

安全须知

  • 本工具仅支持只读查询(SELECT),写操作会被系统拒绝
  • 查询结果默认限制为 500 行
  • 查询超时为 30 秒
  • 如果用户要求执行写操作,应礼貌拒绝并说明这是安全限制

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.