소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 11일 15:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill github-tag명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | github-tag |
| description | Create semantic version tags Use when this capability is needed. |
| metadata | {"author":"dtsong"} |
v1.2.3, v1.0.0-beta.1) with alphanumeric characters, dots, and hyphens only.Create semantic version tags for releases.
/gh-tag # Interactive, suggest next version
/gh-tag v1.2.0 # Create specific tag
/gh-tag v1.2.0 --push # Create and push immediately
/gh-tag --list # List existing tags
/gh-tag --delete v1.2.0 # Delete a tag
# Get all tags sorted by version
git tag --sort=-v:refname | head -10
# Get latest tag
LATEST=$(git describe --tags --abbrev=0 2>/dev/null)
echo "Latest tag: $LATEST"
# Count commits since last tag
COMMITS=$(git rev-list $LATEST..HEAD --count 2>/dev/null || echo "0")
echo "Commits since: $COMMITS"
Analyze commits since last tag:
# Check for conventional commit types
git log $LATEST..HEAD --format="%s" | while read msg; do
case "$msg" in
BREAKING*|*!:*)
echo "MAJOR" ;;
feat:*|feat\(*\):*)
echo "MINOR" ;;
fix:*|fix\(*\):*)
echo "PATCH" ;;
esac
done | sort | uniq -c
# Lightweight tag (just a pointer)
git tag v1.2.0
# Annotated tag (recommended - includes metadata)
git tag -a v1.2.0 -m "Version 1.2.0 - Feature description"
# Tag specific commit
git tag -a v1.2.0 abc1234 -m "Version 1.2.0"
# Push single tag
git push origin v1.2.0
# Push all tags
git push origin --tags
Tag Creation
Current state:
Latest tag: v1.1.0
Commits since: 15
Current branch: main
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Commit Analysis (since v1.1.0):
feat: 3 commits (new features)
- Add dark mode support
- Add theme persistence
- Add system theme detection
fix: 5 commits (bug fixes)
- Fix login validation
- Fix memory leak
- ...
Other: 7 commits
- docs, chore, refactor, etc.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Suggested versions:
[1] v1.2.0 (Recommended)
Minor bump - new features without breaking changes
[2] v1.1.1
Patch bump - if only counting bug fixes
[3] v2.0.0
Major bump - if there are breaking changes
[4] Custom version
Select option:
Created tag: v1.2.0
Details:
Tag: v1.2.0
Commit: abc1234 (HEAD of main)
Message: Version 1.2.0 - Dark mode and performance improvements
Type: Annotated
The tag is local only.
To push:
git push origin v1.2.0
Or create a release (will push tag automatically):
/gh-release v1.2.0
Tag v1.2.0 pushed to origin.
The tag is now available on GitHub:
https://github.com/owner/repo/releases/tag/v1.2.0
Next steps:
/gh-release v1.2.0 # Create a release for this tag
Tags (showing last 10):
v1.1.0 3 days ago abc1234 Performance improvements
v1.0.1 2 weeks ago def5678 Bug fixes
v1.0.0 1 month ago ghi9012 Initial stable release
v0.9.0 2 months ago jkl3456 Beta release
...
Total: 15 tags
Commands:
/gh-tag v1.2.0 # Create new tag
/gh-release v1.1.0 # Create release for existing tag
/gh-tag --delete v0.9.0 # Delete old tag
Delete tag v0.9.0?
This will delete:
- Local tag: v0.9.0
- Remote tag: origin/v0.9.0 (if --remote specified)
Note: If a release exists for this tag, it will become a "draft"
release without a tag.
Proceed? [y/n]
Deleted local tag: v0.9.0
Deleted remote tag: origin/v0.9.0
MAJOR.MINOR.PATCH
│ │ │
│ │ └── Bug fixes, patches
│ └──────── New features, backwards compatible
└────────────── Breaking changes
Examples:
v1.0.0 - First stable release
v1.1.0 - New feature added
v1.1.1 - Bug fix
v2.0.0 - Breaking API change
Pre-release:
v1.0.0-alpha.1
v1.0.0-beta.1
v1.0.0-rc.1
-a flag)v1.2.3 or 1.2.3| Commit Type | Version Impact |
|---|---|
feat: | Minor version |
fix: | Patch version |
BREAKING CHANGE: | Major version |
docs:, chore: | No version change |
/gh-release to create full release after tagging/gh-changelog to see what's included since last tagConverted and distributed by TomeVault — claim your Tome and manage your conversions.