Skip to main content

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에서 보기