Help us improve
Share bugs, ideas, or general feedback.
From hb
Creates git commits matching repository style. Stages files explicitly and writes concise commit messages in imperative mood.
npx claudepluginhub helderberto/agent-skills --plugin hbHow 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
- Status: !`git status`
Creates git commits with clear messages from working tree changes, following repo conventions or conventional commits. Handles clean trees and detached HEAD.
Creates semantic git commits with conventional commit format, stages changes, and pushes to remote. Handles pre-commit hooks and writes meaningful commit messages.
Executes git commits with conventional commit message analysis, intelligent staging, and message generation. Use when asked to commit changes or when /commit is invoked.
Share bugs, ideas, or general feedback.
git statusgit diff HEADgit log --oneline -10Match 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)