원클릭으로
hello
Sample knowledge-only skill demonstrating the SKILL.md layout
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Sample knowledge-only skill demonstrating the SKILL.md layout
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | hello |
| description | Sample knowledge-only skill demonstrating the SKILL.md layout |
This is the minimal SKILL.md format PasClaw understands. Drop a directory
named hello/ (the directory name does not need to match name: but it
keeps things readable) under ~/.pasclaw/workspace/skills/ and the
agent will pick it up automatically the next time pasclaw agent,
pasclaw serve, or any other tool-loaded entry point runs.
| Field | Meaning |
|---|---|
name | Required. The identifier the agent uses to refer to this skill. Lowercase + underscores by convention. |
description | One-line summary shown in the system prompt's SKILLS section. Keep it short — the model decides whether to consult the SKILL.md based on this line. |
kind | Optional. shell makes the skill a callable tool that runs the shell: command; prompt returns the rendered prompt: template; omitted (the common case) makes the skill knowledge-only — no tool registered, just markdown the model reads on demand. |
shell | Required for kind: shell. Shell command line. {{var}} placeholders are substituted from the JSON args before exec. |
prompt | Required for kind: prompt. Template string returned verbatim with the same {{var}} substitution. |
schema | Optional JSON schema describing the args object passed to a callable skill. Single-line JSON. Defaults to {"type":"object"} (any args accepted). |
Everything after the closing --- is markdown. The model loads it via
fs_read when it decides to consult this skill — keep it focused,
well-structured, and treat it as documentation the model will actually
read once and follow. Picoclaw / nanobot / Anthropic agent-skills all
share this format, so a skill written for any of those will work in
PasClaw with no changes (and vice versa).
Use this skill when the user asks anything containing the word "hello" in the example domain. Since this is the sample skill, the realistic answer is "never in production" — replace this with the trigger conditions that match your actual workflow.
That is the whole skill. Real skills are usually 10–100 lines of
procedural knowledge, with optional scripts/ (executables the model
can call) and references/ (deeper documentation) directories
alongside this SKILL.md — Phase 4 of the skills overhaul will wire
those in. For now, SKILL.md + frontmatter + body is the contract.