Agent skill
git-commit-and-push
Git Commit and Push. Use when user wants to commit and push changes together.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/git-commit-and-push
SKILL.md
Git Commit and Push
커밋과 푸시를 순차적으로 수행합니다.
Workflow
- Commit Phase -
/git-commit스킬 참조 - Push Phase -
/git-push스킬 참조
Quick Flow
# 1. 상태 확인
git status
git fetch origin
# 2. 스테이징 & 커밋
git add <files>
git commit -v
# 3. 동기화 & 푸시
git pull --rebase origin $(git branch --show-current)
git push origin $(git branch --show-current)
Checklist
- 민감한 정보 없음
- 테스트 통과
- 커밋 메시지 규칙 준수 (/git-commit 참조)
- Protected branch 직접 push 주의
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?