Install
$ agentstack add skill-jonayeon-claude-code-skills-work-git-git-finish ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Git Finish — 작업 마무리 & 업로드
목적
코드 작업 완료 후, 변경사항을 커밋·푸시하고 GitHub Issues에 작업 내용을 정리합니다.
지침
1. 변경사항 확인
git status
git diff --stat
- 변경된 파일 목록과 규모를 파악합니다.
2. 변경사항 요약 생성
git-diff-summary 스킬을 활용하여 변경 내용을 분석합니다.
- 무엇을 변경했는지
- 왜 변경했는지
- 영향 범위
3. 커밋 메시지 생성
commit-message 스킬을 활용하여 Conventional Commits 형식으로 생성합니다.
사용자에게 커밋 메시지를 보여주고 확인을 받은 후 커밋합니다.
스테이징 시 주의사항:
git add -A를 사용하지 않습니다. 변경 파일을 개별 확인합니다..env,credentials,secret,*.pem,*.key등 민감 파일은 제외합니다..gitignore에 포함되어야 할 파일이 추적되고 있으면 사용자에게 알립니다.
# 안전한 스테이징 — 파일을 명시적으로 지정
git add
git commit -m ""
4. Push
git push origin
- 새 브랜치라면
-u플래그 추가:git push -u origin
5. GitHub Issue 생성
사용자에게 확인합니다:
> GitHub Issue를 생성할까요?
Yes 선택 시 — 다음 형식으로 Issue 내용을 생성하고 사용자에게 보여줍니다:
이슈 제목 형식: [type][scope] 간단한 설명
- type:
feat | fix | refactor | test | build | chore | docs | revert | design - scope:
camera | tflite | ui | analysis | widget | pipeline | data | release | repo - 예시:
[feat][pipeline] JSON 프롬프트 분리 및 RAG 사전 추가
## 작업 내용
변경사항 요약
## 변경된 파일
- 파일 목록
## 변경 이유
작업 배경 및 목적
## 체크리스트
- [ ] 테스트 확인
- [ ] 문서 업데이트
그 다음 GitHub CLI 또는 API로 Issue를 생성합니다:
gh issue create --title "[type][scope] 간단한 설명" --body ""
gh가 없으면 Issue 내용을 마크다운으로 출력하여 직접 붙여넣을 수 있게 합니다.
6. 완료 보고
커밋, 푸시, Issue 생성 결과를 한눈에 정리합니다.
출력 형식
## 작업 완료 ✅
- **커밋**: feat(auth): add email validation
- **브랜치**: feat/user-auth → origin
- **GitHub Issue**: #42 생성 완료
### 작업 요약
오늘 한 작업 2~3줄 요약
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: JoNaYeon
- Source: JoNaYeon/claude-code-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.