with one click
commit
Create a conventional commit from staged changes without Co-Authored-By
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 conventional commit from staged changes without Co-Authored-By
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
Review code changes for best practices, complexity, compatibility, and gaps
Review codebase for CLEAN code practices and DRY violations
Create a descriptive GitHub PR with summary and test plan using gh CLI
Implement features following strict coding best practices with docs and tests
Run ruff linting and formatting checks, auto-fix issues
Scan for hardcoded secrets, credentials, tokens, and security vulnerabilities
| name | commit |
| description | Create a conventional commit from staged changes without Co-Authored-By |
| user-invocable | true |
| argument-hint | [optional hint for commit scope/message] |
Create a well-formatted conventional commit from currently staged changes.
git status and git diff --cached to review staged changes.git log --oneline -5 to check recent commit message style.<type>(<scope>): <description>
Where <type> is one of: feat, fix, docs, style, refactor, test, chore, ci, build, perf.$ARGUMENTS is provided, use it as a hint for the commit scope or message content.Co-Authored-By lines to the commit message.git commit -m "$(cat <<'EOF'
<type>(<scope>): <description>
<optional body with details>
EOF
)"
git log --oneline -1 to confirm the commit was created successfully.