Agent Skills
› datagallery-lab/datafoundry
› hello-test-skill
hello-test-skill
GitHub用于执行上传和运行时冒烟测试的最小化技能,适用于用户请求简单上传测试或基础数据检查的场景。
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


