commit
為暫存的變更生成提交訊息
또한 다음에서 사용할 수 있습니다: 0xmsc,davila7,Codename-11,getsentry,0xmsc
撰寫清晰的提交訊息需要時間,且不同開發者之間的一致性也有所差異。此技能會分析您暫存的變更並根據專案慣例生成符合規範的提交訊息。它會檢視 git 資料、建議訊息,並在您核准後進行提交。
스킬 ZIP 다운로드
Claude에서 업로드
설정 → 기능 → 스킬 → 스킬 업로드로 이동
토글을 켜고 사용 시작
테스트해 보기
"commit" 사용 중입니다. Run /commit to create a commit message for my staged changes
예상 결과:
- feat: add auto-reveal toggle for estimation rounds
- Implement user-configurable auto-reveal that shows estimates
- automatically after all users have voted
- Proceed with this commit message?
"commit" 사용 중입니다. Use /commit to generate a commit message for this bug fix
예상 결과:
- fix: prevent duplicate user connections to lobby
- Add validation to check existing connections before
- establishing new WebSocket connections
- Proceed with this commit message?
"commit" 사용 중입니다. Use /commit for my refactoring changes
예상 결과:
- refactor: extract insight resolution logic to separate resolvers
- Move insight resolution from main service to dedicated
- resolver classes for better separation of concerns
- Proceed with this commit message?
보안 감사
안전All 38 static findings are FALSE POSITIVES. The static scanner incorrectly flagged standard git commit message prefixes (feat, fix, refactor, chore, style, test) as 'weak cryptographic algorithms', and legitimate git commands (git diff --staged, git status, git log) as 'shell backtick execution'. This is a prompt-based skill that generates conventional commit messages using hardcoded git commands for read operations and commits. No malicious behavior detected.
위험 요인
🌐 네트워크 접근 (1)
📁 파일 시스템 액세스 (1)
⚙️ 외부 명령어 (26)
품질 점수
만들 수 있는 것
快速提交訊息
無需記憶格式即可立即生成符合規範的提交訊息。
強制執行提交標準
透過自動化訊息生成確保所有團隊提交都遵循一致的規範。
自動化版本控制
在腳本中使用以為自動化的相依性更新生成標準化提交。
이 프롬프트를 사용해 보세요
Run /commit to create a commit message for my staged changes.
Use /commit to generate a commit message for this feature implementation.
Run /commit to create a fix commit message for my staged bug fix.
Use /commit to generate an appropriate commit message for these changes. Review all staged files first.
모범 사례
- 在執行 commit 前暫存特定檔案以保持訊息聚焦
- 核准前檢視生成的訊息
- 當變更複雜時在提交本文中提供上下文
피하기
- 對未暫存的變更執行 commit
- 跳過訊息檢視核准
- 用於合併提交或複雜的 git 操作
- 期望 AI 理解未經檢視的程式碼上下文