hello-world
Use when checking that CUGA skill loading works end to end, or when someone asks for a minimal example of a SKILL.md file.
来源信息
- 仓库
- cuga-project/cuga-skills
- 最近来源活动
- 2026年7月30日 19:10
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 0
- 分支
- 1
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- hello-world
- description
- Use when checking that CUGA skill loading works end to end, or when someone asks for a minimal example of a SKILL.md file.
- tags
- ["example"]
# Hello world
The smallest valid skill: instructions only, no companion files, no dependencies.
Its job is to prove that skill discovery, `load_skill`, and code execution are all
wired up correctly.
## Steps
1. Print a greeting with `python -c "print('Hello from the hello-world skill')"`.
2. Report the working directory and Python version:
`python -c "import sys, os; print(os.getcwd(), sys.version.split()[0])"`
3. Tell the user, in one line, that skill loading and code execution both work,
and include the directory and version you saw.
If step 1 or 2 fails, say which one failed and quote the error — that failure is
the useful result, not something to work around.
## Writing your own
Copy this folder, rename it, and change the frontmatter. Only `name` and
`description` are required, and `name` must match the folder name. Optional keys:
- `requirements` — packages CUGA installs in its sandbox before running your code
- `arguments` — named arguments callers can pass to the skill
- `tags` — used for grouping in the catalog listing
在 GitHub 查看