소스 정보
- 저장소
- 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 git-branches명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | git-branches |
| description | List and visualize branch status Use when this capability is needed. |
| metadata | {"author":"dtsong"} |
git fetch --prune to refresh remote tracking)--all, --merged, --no-merged, --stale accepted. Reject arbitrary strings or shell metacharacters.Show all branches with their status, tracking info, and sync state.
/git-branches # List all local branches with status
/git-branches --all # Include remote branches
/git-branches --merged # Only show merged branches
/git-branches --no-merged # Only show unmerged branches
/git-branches --stale # Show branches with deleted remotes
# Fetch to get accurate remote status
git fetch --all --prune --quiet
# List local branches with tracking info
git branch -vv
# For each branch, calculate ahead/behind
for branch in $(git branch --format='%(refname:short)'); do
upstream=$(git rev-parse --abbrev-ref "$branch@{u}" 2>/dev/null)
if [ -n "$upstream" ]; then
ahead=$(git rev-list --count "$upstream..$branch")
behind=$(git rev-list --count "$branch..$upstream")
echo "$branch: $ahead ahead, $behind behind of $upstream"
else
echo "$branch: no upstream"
fi
done
# Check if branch is merged into main
git branch --merged main
git branch --no-merged main
# Branches whose remote has been deleted
git branch -vv | grep ': gone]'
Branches (4 local, 6 remote)
* feat/dark-mode abc1234 [origin/feat/dark-mode: ahead 2]
Add theme toggle component
main def5678 [origin/main]
Latest release
feat/user-auth ghi9012 [origin/feat/user-auth: behind 3]
Add login form
fix/old-bug jkl3456 [origin: gone]
Fix deprecated (remote deleted)
Legend:
* = current branch
ahead N = local commits not pushed
behind N = remote commits not pulled
gone = remote branch deleted
Quick actions:
/git-switch <branch> # Switch to branch
/git-delete-branch <name> # Delete branch
/git-sync # Fetch updates
Branches merged into main:
fix/login-bug (merged 3 days ago)
feat/old-feature (merged 1 week ago)
chore/cleanup (merged 2 weeks ago)
These branches can be safely deleted with:
/git-delete-branch --merged
Stale branches (remote deleted):
feat/abandoned-feature [origin: gone] - Remote deleted
fix/old-bug [origin: gone] - Remote deleted
These branches have no remote tracking anymore.
Clean up with:
/git-delete-branch feat/abandoned-feature
/git-delete-branch --stale # Delete all stale
Local branches:
* feat/dark-mode abc1234 [ahead 2]
main def5678 [up to date]
Remote branches (origin):
origin/main
origin/feat/dark-mode
origin/feat/user-auth
origin/feat/api-v2
origin/HEAD -> origin/main
Remote branches not checked out locally:
origin/feat/api-v2 # /git-switch feat/api-v2 to check out
| Symbol | Meaning |
|---|---|
* | Current branch |
ahead N | N commits to push |
behind N | N commits to pull |
gone | Remote branch deleted |
[up to date] | Synced with remote |
[no upstream] | No remote tracking |
At the end of output, show summary:
Summary:
Current: feat/dark-mode
Total: 4 local, 6 remote
Ahead: 1 branch needs push
Behind: 1 branch needs pull
Stale: 2 branches (remote deleted)
Merged: 3 branches can be deleted
/git-switch <branch> to change branches/git-delete-branch to clean up branches/git-sync to update remote information/git-pull to sync branches that are behindConverted and distributed by TomeVault — claim your Tome and manage your conversions.