A GitHub CLI extension that uses AI to generate commit messages, create and edit pull requests with smart titles and descriptions, review code with actionable feedback, manage issues and generate implementation plans, and explain CI failures.
- Gum — macOS:
brew install gum - Bash 4.4+ (
bash) — macOS:brew install bash - GitHub CLI (
gh) — macOS:brew install gh - Claude Code (
claude)
gh extension install gh-extensions/gh-aigh ai commit [-d <DESCRIPTION>] [-- GIT_COMMIT_OPTIONS]
gh ai pr create [-d <DESCRIPTION>] [-B <BASE>] [-- GH_PR_CREATE_OPTIONS]
gh ai pr edit [PR_NUMBER] -d <DESCRIPTION> [-- GH_PR_EDIT_OPTIONS]
gh ai pr review [PR_NUMBER] [-d <DESCRIPTION>] [-- GH_PR_REVIEW_OPTIONS]
gh ai pr explain [PR_NUMBER] [--comment | --edit]
gh ai issue create -d <DESCRIPTION> [-- GH_ISSUE_CREATE_OPTIONS]
gh ai issue edit <ISSUE_NUMBER> -d <DESCRIPTION> [-- GH_ISSUE_EDIT_OPTIONS]
gh ai issue plan <ISSUE_NUMBER> [-d <DESCRIPTION>]
gh ai run explain <RUN_ID>Generates a conventional commit message from your staged changes. Use
-d/--description to provide extra context or constraints that guide
the AI when writing the message.
git add -p
gh ai commit
gh ai commit -d "focus on the security improvements"
gh ai commit -- --signoff
gh ai commit -- --no-verifyCreates a pull request with an AI-generated title and description.
gh ai pr create
gh ai pr create -B develop -- --draft
gh ai pr create -d "focus on the security changes"Edits an existing pull request with AI-generated updates based on a description of what to change.
gh ai pr edit 42 -d "add testing section"
gh ai pr edit 42 -d "fix summary" -- --add-label bug
gh ai pr edit -d "improve description" # auto-detect PR from current branchReviews a pull request with AI-generated feedback. Use -d/--description
to provide extra context or focus areas that guide the AI review.
gh ai pr review 42
gh ai pr review 42 -- --approve
gh ai pr review -d "focus on security"
gh ai pr review 42 -d "check error handling" -- --comment
gh ai pr review # auto-detects PR for the current branchExplains a pull request in plain language.
gh ai pr explain 42 # print explanation to stdout
gh ai pr explain # auto-detect PR from current branch
gh ai pr explain 42 --comment # post as PR comment
gh ai pr explain 42 --edit # replace PR descriptionCreates a structured GitHub issue from a brief description.
gh ai issue create -d "Login page crashes with special chars"
gh ai issue create -d "Login crash" -- --label bug --assignee @me
some_command 2>&1 | gh ai issue create -d "Command X fails" # pipe error contextEdits an existing issue with AI-generated updates based on a description of what to change.
gh ai issue edit 42 -d "add acceptance criteria"
gh ai issue edit 42 -d "fix typos and improve clarity"
gh ai issue edit 42 -d "rephrase as a bug report" -- --add-label bugGenerates an AI implementation plan from an issue and prints it to stdout.
Use -d/--description to provide extra context or constraints that guide
the AI when writing the plan.
gh ai issue plan 42
gh ai issue plan 42 -d "focus on the auth module"
gh ai issue plan 42 | pbcopyPipe to an AI agent to implement:
gh ai issue plan 42 | claude
gh ai issue plan 42 | jules new
gh ai issue plan 42 | gh agent-task create --body -Full branch + PR workflow:
gh issue develop 42 --checkout && \
git commit --allow-empty -m "chore: start work on #42" && \
gh ai issue plan 42 | gh pr create --body -Analyzes a GitHub Actions workflow run and explains what happened.
gh ai run explain 123456 # uses --log-failed for failed runs, --log otherwiseOverride the AI provider and model via gh config.
| Key | Default | Description |
|---|---|---|
gh-ai.provider |
anthropic |
AI provider (anthropic) |
gh-ai.model |
haiku |
Model for all commands (fallback) |
gh-ai.commit.model |
Model override for commit |
|
gh-ai.pr.model |
Model override for pr create/edit/review/explain |
|
gh-ai.issue.model |
Model override for issue create/edit/plan |
|
gh-ai.run.model |
Model override for run explain |
Per-command keys take priority over gh-ai.model.
# Set the default model
gh config set gh-ai.model haiku
# Use a stronger model for PRs
gh config set gh-ai.pr.model sonnetNote:
gh config setwill print a warning for keys it doesn't recognize (e.g.'gh-ai.pr.model' is not a known configuration key). This is expected — the values are still saved and used by the extension.
gh-fzf is a GitHub CLI extension
that wraps gh commands in an interactive fuzzy finder. Source
extras/gh_fzf_ai.sh in your shell config to register gh-ai keybinds via
GH_FZF_*_OPTS.
source "$(gh extension list | awk '/gh-ai/{print $3}')/extras/gh_fzf_ai.sh"| Context | Key | Action |
|---|---|---|
gh-fzf issue |
alt-P |
Generate AI plan for the selected issue |
gh-fzf pr |
alt-E |
Explain the selected PR |
gh-fzf pr |
alt-A |
Approve the selected PR via AI review |
gh-fzf pr |
alt-N |
Request changes on the selected PR via AI review |
gh-fzf run |
alt-E |
Explain the selected workflow run failure |
gh-fzf search prs |
alt-E |
Explain the selected PR |
gh-fzf search prs |
alt-A |
Approve the selected PR via AI review |
gh-fzf search prs |
alt-N |
Request changes on the selected PR via AI review |
MIT — Copyright (c) 2025 gh-extensions