원클릭으로
release-workflow
Use when releasing changes to npm. Automates changeset creation, PR workflow, and publish from master.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when releasing changes to npm. Automates changeset creation, PR workflow, and publish from master.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | release-workflow |
| description | Use when releasing changes to npm. Automates changeset creation, PR workflow, and publish from master. |
# From a feature branch with changes ready:
/release-workflow
tmp/reports/new/ for context.release.mjs automates CI waits and merges.tmp/reports/new/ to understand changes/changeset-writer skill to create changesets/git-committer skill to commit all changespnpm zx .claude/skills/release-workflow/release.mjs to automate:
| Step | Command |
|---|---|
| Push & PR | git push -u origin HEAD && gh pr create --base master --fill |
| Watch CI | gh run watch $(gh run list -b BRANCH -L1 --json databaseId -q '.[0].databaseId') |
| Merge PR | gh pr merge --squash --delete-branch |
| Version PR | gh pr list --search "Version Packages" then gh pr merge NUM --squash |
| Watch publish | gh run watch $(gh run list -b master -w publish.yml -L1 --json databaseId -q '.[0].databaseId') |