| description | Commit changes without Claude attribution | ||||
|---|---|---|---|---|---|
| allowed_tools |
|
Commit the current changes to git without Claude attribution. Follow these steps:
- Run git status to see what needs to be committed (including untracked files)
- Run git diff to review the changes
- Add all changes including untracked files:
- For specific files: git add etc.
- Or to add everything: git add .
- Make sure to include any new/untracked files shown in git status
- Create a commit with a descriptive message based on the changes
- DO NOT include the Claude attribution footer
- Use a simple commit message format without emojis or attribution
The commit message should focus on what changed and why, using conventional commit format (feat:, fix:, chore:, etc.).
$ARGUMENTS