Agent Skills
› datagallery-ai/dataagent
› hello-test-skill
hello-test-skill
GitHub用于执行简单的数据上传测试和基本数据检查。通过调用inspect_schema和只读SQL查询预览表结构,并以通俗语言总结结果,旨在验证数据源可用性。
Trigger Scenarios
用户请求简单上传测试
用户请求基本数据检查
Install
npx skills add datagallery-ai/dataagent --skill hello-test-skill -g -y
SKILL.md
Frontmatter
{
"name": "hello-test-skill",
"tags": [
"test",
"demo"
],
"version": "1.0.0",
"description": "A minimal skill for upload and runtime smoke testing.",
"allowed-tools": [
"inspect_schema",
"run_sql_readonly",
"preview_table"
],
"user-invocable": true
}
Hello Test Skill
Use this skill when the user asks for a simple upload test or a basic data check.
Steps
- Greet the user and confirm this skill was loaded.
- If a datasource is available, call
inspect_schemafirst. - Run a small read-only query with
run_sql_readonlyor preview a table. - Summarize results in plain language.
Notes
- This is a test skill only. Keep responses short.
- Do not invent schema or query results.
Version History
- 77fa566 Current 2026-07-11 16:58


