commit
이모지와 함께 conventional git commit 생성
Également disponible depuis: sickn33,DavidOpDeBeeck,davila7,0xmsc,getsentry,0xmsc
개발자들은 커밋 메시지 형식을 맞추는 데 너무 많은 시간을 소비합니다. 이 스킬은 이모지 접두사를 사용하여 conventional commit 생성을 자동화하고, 모든 프로젝트에서 일관되고 읽기 쉬운 버전 히스토리를 보장합니다.
Télécharger le ZIP du skill
Importer dans Claude
Allez dans Paramètres → Capacités → Skills → Importer un skill
Activez et commencez à utiliser
Tester
Utilisation de "commit". 설명적인 메시지와 함께 내 변경 사항을 커밋해줘
Résultat attendu:
- ✨ feat: add user authentication system
- Implements login, logout, and session management.
- 🤖 Generated with Claude Code (https://claude.com/claude-code)
- Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Utilisation de "commit". 방금 수정한 버그에 대한 커밋을 생성해줘
Résultat attendu:
- 🐛 fix: resolve authentication timeout issue
- Fixes login timeout occurring after 5 minutes of inactivity.
- 🤖 Generated with Claude Code (https://claude.com/claude-code)
- Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Utilisation de "commit". 문서 업데이트를 커밋해줘
Résultat attendu:
- 📝 docs: update API documentation
- Adds examples for user creation and authentication endpoints.
- 🤖 Generated with Claude Code (https://claude.com/claude-code)
- Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Audit de sécurité
SûrThis is a pure documentation skill with no executable code. SKILL.md contains only markdown documentation for git commit best practices, and skill-report.json contains metadata. All static findings are FALSE POSITIVES - the scanner misinterpreted markdown code blocks (git command examples) as shell execution, safety guidelines about .env files as actual file access, and URL references as network calls. The skill explicitly includes safety rules against destructive git operations and credential exposure.
Facteurs de risque
🌐 Accès réseau (4)
📁 Accès au système de fichiers (1)
⚙️ Commandes externes (20)
Score de qualité
Ce que vous pouvez construire
빠른 커밋 생성
코딩 작업 완료 후 올바른 형식의 커밋으로 작업 저장
커밋 표준 적용
팀 커밋이 이모지와 함께 일관된 conventional 형식을 따르도록 보장
자동화 친화적 메시지
자동화된 변경 로그 도구와 잘 작동하는 커밋 생성
Essayez ces prompts
설명적인 메시지와 함께 내 변경 사항을 커밋해줘
방금 추가한 새로운 로그인 기능에 대한 conventional commit을 생성해줘
인증 모듈에서 수정한 버그에 대한 커밋을 생성해줘
내가 수정한 README 업데이트에 대한 커밋을 생성해줘
Bonnes pratiques
- 모든 관련 변경 사항이 포함되었는지 확인하기 위해 커밋 전 git diff를 검토하세요
- 명확한 분류를 위해 적절한 커밋 유형 이모지를 사용하세요
- 가능한 경우 큰 변경 사항을 여러 개의 집중된 커밋으로 분할하세요
Éviter
- 구체성 없이 'fix'나 'update'와 같은 일반적인 메시지 사용
- 스테이징된 파일을 먼저 검토하지 않고 직접 커밋
- API 키나 비밀번호와 같은 민감한 데이터를 커밋에 포함