Agent Skills
› pony-maggie/code_minions
› hello-world
hello-world
GitHub平台行走骨架冒烟测试技能,用于在运行工作区写入问候文件。作为基础验证手段,不涉及LLM或MCP调用,主要用于快速检验系统基本功能是否正常。
Trigger Scenarios
平台初始化和部署后的冒烟测试
需要快速验证基础文件系统写入能力的场景
Install
npx skills add pony-maggie/code_minions --skill hello-world -g -y
SKILL.md
Frontmatter
{
"name": "hello-world",
"inputs": {
"name": {
"type": "string",
"required": true
}
},
"outputs": {
"greeting": {
"type": "string"
},
"file_path": {
"type": "string"
}
},
"description": "Walking-skeleton smoke test skill. Writes a greeting file.",
"allowed-tools": [],
"required-mcps": [],
"entrypoint-script": "scripts\/run.py"
}
hello-world
Writes a greeting file inside the run workspace. Used as a walking-skeleton smoke test for the platform; no LLM or MCP involvement.
Inputs
name(string, required): who to greet.
Outputs
file_path(string): path to the greeting file.greeting(string): the greeting text written.
Version History
- ac75593 Current 2026-07-24 17:41


