From hb
Creates git commits following repository style. Stages files explicitly and writes concise messages matching existing patterns.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hb:commitThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Match repo's existing commit patterns from log.
Match repo's existing commit patterns from log.
git add . or -A)git status after to verifyBug fix -- single file:
git add src/auth.ts
git commit -m "fix: null check in login handler"
Feature -- multiple related files:
git add src/components/SearchBar.tsx src/hooks/useSearch.ts
git commit -m "add search bar component"
Refactor -- extraction:
git add src/utils/validation.ts
git commit -m "extract email validation to util"
--amend)npx claudepluginhub helderberto/agent-skills --plugin hbCreates a single well-crafted git commit by analyzing the diff, matching the repo's commit style, and writing a concise "why not what" message. Invoked via /commit.
Creates semantic git commits with conventional commit format, stages changes, and pushes to remote. Handles pre-commit hooks and writes meaningful commit messages.
Creates local Git commits with conventional messages and GitHub issue references. Handles staging, pre-commit hooks, and automatic issue detection from changes.