원클릭으로
example-skill
A short, retrievable description used for BM25/keyword matching.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
A short, retrievable description used for BM25/keyword matching.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | example-skill |
| description | A short, retrievable description used for BM25/keyword matching. |
| when_to_use | List the kinds of tasks this skill fits (one line or short list). |
| agents | ["*"] |
This file demonstrates the folder skill shape (a directory containing
a SKILL.md). Use a folder skill when your recipe ships reference
material — extra docs, example scripts, fixtures.
Duplicate this directory under a real name (e.g. skills/deseq2-r/)
and edit. The directory name becomes the skill id unless the name:
frontmatter overrides it.
The body is what the agent reads when this skill is pulled into a turn.
Keep it focused — one procedure per skill, not three. Cross-link to
reference material via @references/<file>:
See @references/conventions.md for the lab-standard color palette.
The agent will inline the contents of references/conventions.md at
turn time when it reads this skill.
skills/example-skill/
├── SKILL.md ← this file (the entry point)
├── references/ ← supporting docs (resolved via @)
│ └── conventions.md
└── scripts/ ← optional code the agent may run
└── helper.R
ABA discovers folder skills by looking for <dir>/SKILL.md. Anything else
in the directory is just there for the skill's body to reference.
name: canonical id (default: folder name). Use kebab-case.description: 1-line summary used for retrieval. Make it specific.when_to_use: example task patterns; helps the agent decide not to
pull the wrong skill.agents: which agents see this skill. ["*"] = all, ["aba"] = ABA
only, ["claude-code"] = CC only, omitted = all.A flat skill (skills/<name>.md) is the same idea without the directory.
Use flat skills when there's no reference material; the file is
self-contained.
For an example flat skill, see skills/flat-example.md.