Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/tomes --skill release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | release |
| description | | Use when this capability is needed. |
The release process for the dip gem involves:
lib/dip/version.rbCHANGELOG.mdmastervX.Y.Zhttps://rubygems.org/gems/dip/settingsbibendi/diprelease.ymlmaster before releasing (recommended)Look at current version in lib/dip/version.rb. Follow SemVer.
Edit lib/dip/version.rb and update the VERSION constant:
module Dip
VERSION = "X.Y.Z"
end
Edit CHANGELOG.md and add a new section at the top (after # Changelog):
## [X.Y.Z] - YYYY-MM-DD
- Description of change [#123]
Use the format ## [X.Y.Z] - YYYY-MM-DD with no v prefix.
Prefix breaking changes with **BREAKING**.
git add lib/dip/version.rb CHANGELOG.md
git commit -m "chore: bump version to X.Y.Z"
git push origin master
git tag vX.Y.Z
git push origin vX.Y.Z
Pushing the vX.Y.Z tag triggers .github/workflows/release.yml which:
rubygems/release-gem action (Trusted Publishing — no API keys needed)bundle exec rake release runs under the hood — skips tag creation since it already exists (already_tagged? guard)scripts/release_notes.sh.gem as assetrake release fails with "not clean": Ensure all changes are committed before pushing the tagrelease.ymlgit tag -d vX.Y.Z && git push origin :refs/tags/vX.Y.Z)Source: bibendi/dip — distributed by TomeVault.