with one click
commit
Create a semantic git commit from staged or unstaged changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create a semantic git commit from staged or unstaged changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Generate a new React component with Mantine styling
Update documentation after implementing features or making changes
Run a quick architecture review via architect-reviewer agent
Generate mobile-specific React components with platform detection and safe areas
Run a quick security audit on recent changes or specific files
Generate a test file for a component, hook, or utility
| name | commit |
| description | Create a semantic git commit from staged or unstaged changes |
Creates a well-formatted semantic commit message based on the actual changes made.
git status --short
If no changes, inform user and stop.
Review the diff to understand changes:
git diff HEAD --stat
git diff HEAD
git add -A
Generate a commit message following these conventions:
feat:, fix:, refactor:, docs:, chore:, test:, style:Commit with the generated message:
git commit -m "<generated message>"
<type>: <short summary>
<optional body explaining what changed and why>
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
feat: - New feature or capabilityfix: - Bug fixrefactor: - Code restructuring without behavior changedocs: - Documentation onlychore: - Build, deps, config changestest: - Adding or fixing testsstyle: - Formatting, whitespace, etc.For changes to task filtering:
feat: add task priority filtering
- Add priority dropdown to TasksView header
- Implement usePriorityFilter hook
- Update TaskList to respect filter
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>