prompts.chatprompts.chatprompts.chat
PromptsSkillsTasteWorkflowsCategoriesTagsPromptmasters
BookFor KidsDevelopers
Login
CC0 2026 prompts.chat
DeepWikiHow to...DocsAPIPrivacyTermsSupportAboutGitHub

Claude Code Skill (Slash Command): review-and-commit.md

A slash command for Claude Code to perform (a) commit(s) following the conventional style.

D
@d
7 days agoMarch 11, 2026 at 10:06 PM
Agent Skill•Claude

Content

1---
2allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*)
3description: Create a git commit
4---
5
6## Context
7
8- Current git status: !`git status`
9- Current git diff (staged and unstaged changes): !`git diff HEAD`
10- Current branch: !`git branch --show-current`
11- Recent commits: !`git log --oneline -10`
12
13## Your task
14
15Review the existing changes and then create a git commit following the conventional commit format. If you think there are more than one distinct change you can create multiple commits.

Comments (0)