Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/toss/es-toolkit --skill issue-label명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | issue-label |
| description | Suggest and apply GitHub labels to unlabeled issues |
| argument-hint | <issue number> |
| allowed-tools | Bash, Read, Grep |
Analyze issue content and assign appropriate labels.
$ARGUMENTS — Issue number (e.g. 1234)
| Label | When to use |
|---|---|
p0: major bug | Core function broken, incorrect results, crashes |
p1: minor bug | Edge case failures, non-critical behavior issues, type errors |
p1: docs bug | Wrong/outdated documentation, broken links |
p2: optimization | Performance improvements, bundle size reduction |
p2: new feature | New function or capability request |
p2: type enhancement | TypeScript type improvements, better generics |
p2: refactoring | Code cleanup, internal improvements |
p2: docs enhancement | New docs, translations, better examples |
p3: discussion | Questions, design discussions, RFCs |
help wanted | Good for external contributors |
gh issue view {number} --repo toss/es-toolkit --json title,body,labels
If labels already exist, report them and stop.
From title and body, identify:
gh issue edit {number} --repo toss/es-toolkit --add-label "{label}"
## Issue #{number} — {title}
### Applied Label: {label}
### Reason: {why this label fits}