with one click
commit
Create a git commit following Conventional Commits format
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 git commit following Conventional Commits format
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
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
Create a draft GitHub pull request following the project template
| name | commit |
| description | Create a git commit following Conventional Commits format |
| user-invocable | true |
| disable-model-invocation | true |
| allowed-tools | ["Bash","Read","Grep"] |
| argument-hint | [optional: scope or message] |
Create a well-structured git commit following the Conventional Commits specification.
<type>(<scope>): <subject>
[optional body]
Example: feat(auth): add OAuth2 login support
| Type | Description |
|---|---|
feat | A new feature |
fix | A bug fix |
docs | Documentation only changes |
style | Changes that do not affect the meaning of the code (white-space, formatting) |
refactor | A code change that neither fixes a bug nor adds a feature |
perf | A code change that improves performance |
test | Adding missing tests or correcting existing tests |
build | Changes that affect the build system or external dependencies |
ci | Changes to CI configuration files and scripts |
chore | Other changes that don't modify src or test files |
revert | Reverts a previous commit |
Subject line:
Body (optional):
Breaking Changes:
feat(api)!: remove deprecated endpointsBREAKING CHANGE: in footergit status to see all changes (never use -uall flag)git diff --staged and git diff to understand the changesgit add <specific-files>git log -1# Feature
git commit -m "feat(auth): add OAuth2 login support"
# Bug fix
git commit -m "fix(api): resolve null pointer in user service"
# Breaking change
git commit -m "feat(api)!: change response format for /users endpoint"
# With body
git commit -m "refactor(components): extract common button styles
Move shared button styles to a dedicated module to reduce duplication
across multiple components."
If $ARGUMENTS is provided:
git add -A or git add . - always add specific filesgit commit -m "$(cat <<'EOF'
type(scope): subject
body text here
EOF
)"