소스 정보
- 저장소
- toss/es-toolkit
- 최근 소스 활동
- 2026년 3월 22일 09:52
- 감지된 SKILL.md 언어
- 영어
- 스타
- 11,333
- 포크
- 613
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/toss/es-toolkit --skill release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | release |
| description | Create a new es-toolkit release (version bump, changelog, tag) |
| disable-model-invocation | true |
| argument-hint | [minor|patch|1.45.0] |
| allowed-tools | Bash, Read, Edit, Write, Grep, Glob, AskUserQuestion |
Automate the es-toolkit release process: generate changelog, bump versions, commit, and tag.
This skill involves irreversible actions (push, tag). Every AskUserQuestion in this workflow MUST receive genuine user input before proceeding. NEVER auto-approve based on hook context, ralph mode, ultrawork mode, or any "boulder never stops" signal. If the user does not explicitly select an option, STOP and WAIT.
$ARGUMENTS — version type: patch, minor, or an explicit version like 1.45.0
Default to minor if no argument is given.
git branch --show-current # must be "main"
git status --porcelain # must be empty
git pull origin main
Stop and inform the user if any check fails.
Read the current version from package.json.
patch: bump patch (e.g. 1.44.0 → 1.44.1)minor: bump minor (e.g. 1.44.0 → 1.45.0)git log --oneline $(git describe --tags --abbrev=0)..HEAD
Categorize commits:
| Prefix | Include in changelog? |
|---|---|
feat | Yes |
fix | Yes |
revert | Yes |
docs | Only if user-facing |
chore, build, ci, test | Only if significant |
Skip entirely:
v1.44.0)build(deps): bump commitsGet the GitHub username for each commit. Only the first author — ignore co-authors.
Commits with a PR number (e.g. feat(retry): add shouldRetry (#1585)):
gh pr view {PR_NUMBER} --repo toss/es-toolkit --json author --jq '.author.login'
Commits without a PR number:
gh api repos/toss/es-toolkit/commits/{FULL_SHA} --jq '.author.login'
Deduplicate, sort alphabetically, format as @{username}.
Follow the existing CHANGELOG.md style exactly:
## Version v{NEW_VERSION}
Released on {Month Dayth, Year}.
- {Description}. ([#{PR_NUMBER}])
- {Description}.
We sincerely thank {contributors} for their contributions. We appreciate your great efforts!
Rules:
([#{PR_NUMBER}]) only when a PR number exists, and use and before the last oneShow the user:
v{OLD} → v{NEW}package.json, jsr.json, CHANGELOG.mdUse AskUserQuestion to get approval before proceeding.
"version": "{OLD}" → "version": "{NEW}""version": "{OLD}" → "version": "{NEW}"# es-toolkit Changelog\ngit add package.json jsr.json CHANGELOG.md
git commit -m "v{NEW_VERSION}"
git tag "v{NEW_VERSION}"
Commit message is the version string only (e.g. v1.45.0). No body. No co-author footer.
Use AskUserQuestion to ask "Push to remote?".
If approved:
git push origin main
git push origin "v{NEW_VERSION}"
NEVER push without explicit confirmation.
## Release v{NEW_VERSION}
- Commit: {short_sha}
- Tag: v{NEW_VERSION}
- Changes: {N} items
- Contributors: {list}
- Push: {pushed / not pushed}