Agent Skills
› datagallery-lab/datafoundry
› hello-test-skill
hello-test-skill
GitHub用于执行简单的数据上传测试和基本数据检查。通过调用 inspect_schema 和只读 SQL 查询验证数据源,并以自然语言总结结果,确保不虚构数据。
Trigger Scenarios
用户要求进行简单上传测试
用户请求基本数据检查
Install
npx skills add datagallery-lab/datafoundry --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


