Help us improve
Share bugs, ideas, or general feedback.
From github
Publish local changes to GitHub by confirming scope, committing intentionally, pushing the branch, and opening a draft PR through the GitHub app from this plugin, with `gh` used only as a fallback where connector coverage is insufficient.
npx claudepluginhub robinebers/converted-plugins --plugin githubHow this skill is triggered — by the user, by Claude, or both
Slash command
/github:yeetThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill only when the user explicitly wants the full publish flow from the local checkout: branch setup if needed, staging, commit, push, and opening a pull request.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Use this skill only when the user explicitly wants the full publish flow from the local checkout: branch setup if needed, staging, commit, push, and opening a pull request.
This workflow is hybrid:
git for branch creation, staging, commit, and push.gh as a fallback for current-branch PR discovery, auth checks, or PR creation when the connector path cannot infer the repository or head branch cleanly.gh. Check gh --version. If missing, ask the user to install gh and stop.gh session. Run gh auth status. If not authenticated, ask the user to run gh auth login (and re-run gh auth status) before continuing.codex/{description} when starting from main/master/default.{description} (terse).[codex] {description} summarizing the full diff.git status -sb and inspect the diff before staging.git add -A. Ask the user which files belong in the PR.main, master, or another default branch, create codex/{description}.git add -A only when the user has confirmed the whole worktree belongs in scope.git push -u origin $(git branch --show-current).repository_full_name from the remote, for example by normalizing git remote get-url origin or by using gh repo view --json nameWithOwner.head_branch from git branch --show-current.base_branch from the user request when specified; otherwise use the remote default branch, for example via gh repo view --json defaultBranchRef.gh pr create fallback because the connector PR creation flow expects one repository target and may not encode cross-repo head semantics cleanly.gh pr create --draft --fill --head $(git branch --show-current).The PR description should use real Markdown prose and cover: