Help us improve
Share bugs, ideas, or general feedback.
From hb
Creates GitHub pull requests from the current branch, analyzes diffs, applies PR templates, and prompts for effort and testing details.
npx claudepluginhub helderberto/agent-skills --plugin hbHow this skill is triggered — by the user, by Claude, or both
Slash command
/hb:create-pull-requestThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Mode: $ARGUMENTS
Creates GitHub pull requests from branch changes using git analysis and gh CLI, with conventional commit titles and standardized templated descriptions including summary, changes, testing, and checklists.
Creates GitHub Pull Requests using GitHub CLI: detects existing PRs for branches, pushes changes, generates titles/bodies from commits. Handles monorepos/submodules. Use for /create-pr or PR/review requests.
Analyzes git diffs and commit history to fill PR templates and create pull requests via gh CLI. Useful for automating PR creation and descriptions.
Share bugs, ideas, or general feedback.
Mode: $ARGUMENTS
If --draft is passed, create as draft PR.
git status && git branch -vvgit log --oneline -10git fetch origin && git remote show origin | grep 'HEAD branch' | cut -d' ' -f5 (get base branch)git rev-parse --abbrev-ref HEAD | grep -oE '[A-Z]+-[0-9]+' (extract ticket ID).github/pull_request_template.md, then the other paths in template-locations.mdgit diff HEADgit diff [base-branch]...HEAD --unified=0/^(build|chore|ci|docs|feat|fix|perf|refactor|revert|style|test)(\(.*\))?: .+$/Resolves TICKET-123)-u if neededgh pr create using HEREDOC (add --draft if requested)See examples.md for output format and gh-flags.md for advanced options.
gh CLI onlygh pr create fails with "already exists" → run gh pr view and return existing PR URLgit push -u origin HEAD before creating PRgh auth status fails → ask user to run gh auth login and retry