원클릭으로
git-release
Create a git release — tag, push, and create GitHub release
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a git release — tag, push, and create GitHub release
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Write personal blog posts with the rhythm, structure, and voice of top-tier essayists (Paul Graham, Dan Luu, Henrik Karlsson, Ben Kuhn, etc.)
Add a new feature with design, TDD, and PR workflow
Audit a codebase for security vulnerabilities, code quality issues, and architecture concerns
Use when the user says "autopilot", "auto mode", "替我回答", or "自动回答". Enables autonomous decision-making by answering Claude's own questions based on the user's personality profile.
Fix a bug with systematic debugging, TDD, and PR workflow
Emergency fix — minimal change, fast PR, no design overhead
| name | git-release |
| description | Create a git release — tag, push, and create GitHub release |
| user_invocable | true |
Tag the current version and create a GitHub release.
git checkout main && git pull
Read current version from package.json, pyproject.toml, Cargo.toml, or equivalent — whichever exists in the project
Generate release notes
git log --oneline <last-tag>..HEAD to get commits since last releaseTag and push
git tag vX.Y.Z
git push origin main --tags
gh release create vX.Y.Z --title "vX.Y.Z" --notes "<release notes from step 3>"
vX.Y.Z (with v prefix)