con un clic
commit
Create a conventional commit from staged changes without Co-Authored-By
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Create a conventional commit from staged changes without Co-Authored-By
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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.