Skip to content

chore(deps): update dependency github:cli/cli to v2.91.0#236

Open
ivy-s-renovate-bot[bot] wants to merge 1 commit intomainfrom
renovate/github-cli-cli-2.x
Open

chore(deps): update dependency github:cli/cli to v2.91.0#236
ivy-s-renovate-bot[bot] wants to merge 1 commit intomainfrom
renovate/github-cli-cli-2.x

Conversation

@ivy-s-renovate-bot
Copy link
Copy Markdown
Contributor

@ivy-s-renovate-bot ivy-s-renovate-bot Bot commented Mar 11, 2026

This PR contains the following updates:

Package Update Change
github:cli/cli minor 2.87.32.91.0

Release Notes

cli/cli (github:cli/cli)

v2.91.0: GitHub CLI 2.91.0

Compare Source

GitHub CLI now collects pseudonymous telemetry

To better understand how features are used in practice, especially as agentic adoption grows, GitHub CLI now sends pseudonymous telemetry.

See Telemetry for more details on what's collected, why, and how to opt out.

Support more agents in gh skill

Thanks to community feedback, gh now supports a large number of agent hosts. Run gh skill install --help for the list of available agents.

Improve skill discovery

gh skill install now adds the --allow-hidden-dirs flag to support discovering skills in hidden (dot-prefixed) directories such as .claude/skills/, .agents/skills/, and .github/skills/.

Detect skills re-published from other sources

GitHut CLI now detects if the skill to be installed is re-published from an upstream source and offers the option to install it from there. The --upstream flag is also added for non-interactive use cases.

What's Changed

✨ Features
🐛 Fixes
📚 Docs & Chores

Full Changelog: cli/cli@v2.90.0...v2.91.0

v2.90.0: GitHub CLI 2.90.0

Compare Source

Manage agent skills with gh skill (Public Preview)

Agent skills are portable sets of instructions, scripts, and resources that teach AI coding agents how to perform specific tasks. The new gh skill command makes it easy to discover, install, manage, and publish agent skills from GitHub repositories - right from the CLI.


# Discover skills
gh skill search copilot

# Preview a skill without installing
gh skill preview github/awesome-copilot documentation-writer

# Install a skill
gh skill install github/awesome-copilot documentation-writer

# Pin to a specific version
gh skill install github/awesome-copilot documentation-writer --pin v1.2.0

# Check installed skills for updates
gh skill update --all

# Validate and publish your own skills
gh skill publish --dry-run

Skills are automatically installed to the correct directory for your agent host. gh skill supports GitHub Copilot, Claude Code, Cursor, Codex, Gemini CLI, and Antigravity. Target a specific agent and scope with --agent and --scope flags.

gh skill publish validates skills against the Agent Skills specification and checks remote settings like tag protection and immutable releases to improve supply chain security.

Read the full announcement on the GitHub Blog.

gh skill is launching in public preview and is subject to change without notice.

Official extension suggestions

When you run a command that matches a known official extension that isn't installed (e.g. gh stack), the CLI now offers to install it instead of showing a generic "unknown command" error.

This feature is available for github/gh-aw and github/gh-stack.

When possible, you'll be prompted to install immediately. When prompting isn't possible, the CLI prints the gh extension install command to run.

gh extension install no longer requires authentication

gh extension install previously required a valid auth token even though it only needs to download a public release asset. The auth check has been removed, so you can install extensions without being logged in.

What's Changed

✨ Features
🐛 Fixes
📚 Docs & Chores
:dependabot: Dependencies

New Contributors

Full Changelog: cli/cli@v2.89.0...v2.90.0

v2.89.0: GitHub CLI 2.89.0

Compare Source

:copilot: gh agent-task now works on ghe.com tenancies

gh agent-task commands previously failed with 401 Unauthorized for users on ghe.com tenancy hosts because the Copilot API URL was hardcoded. The URL is now resolved dynamically per host, so gh agent-task works correctly regardless of your GitHub hosting environment.

Experimental new prompter

A new TUI-based prompter powered by charmbracelet/huh is available behind the GH_EXPERIMENTAL_PROMPTER environment variable. This is an early preview — try it out and share feedback!

export GH_EXPERIMENTAL_PROMPTER=1

gh issue create and gh issue transfer no longer require extra token scopes

gh issue create and gh issue transfer previously fetched repository fields they didn't need, which could require additional token scopes. These commands now fetch only the minimal fields necessary for issue operations.

What's Changed

✨ Features
  • gh pr create, gh issue create, gh issue edit: search-based assignee selection and login-based mutation on github.com by @​BagToad in #​13009
  • Add experimental huh-only prompter gated by GH_EXPERIMENTAL_PROMPTER by @​BagToad in #​12859
🐛 Fixes
📚 Docs & Chores
:dependabot: Dependencies

New Contributors

Full Changelog: v2.88.1...v2.89.0

v2.88.1: GitHub CLI 2.88.1

Compare Source

Fix pr commands failing with read:project scope error

v2.88.0 introduced a regression where pr commands would fail with the error:

error: your authentication token is missing required scopes [read:project]
To request it, run:  gh auth refresh -s read:project

Previously, missing read:project scope was gracefully handled, and project data was silently skipped. A change inadvertently broke the error matching that enabled this graceful degradation. v2.88.1 reverts these changes so that pr commands work correctly without requiring the read:project scope.

What's Changed

Full Changelog: cli/cli@v2.88.0...v2.88.1

v2.88.0: GitHub CLI 2.88.0

Compare Source

:copilot: Request Copilot Code Review from gh

image

gh pr create and gh pr edit now support Copilot Code Review as a reviewer. Request a review with --add-reviewer @​copilot, or select Copilot interactively from the searchable reviewer prompt.

Create a pull request and request review from Copilot:

gh pr create --reviewer @​copilot

Edit a pull request and request review from Copilot:

gh pr edit --add-reviewer @​copilot

Close issues as duplicates with gh issue close --duplicate-of

You can now close issues as duplicates and link to a duplicate issue directly from the CLI. The new --duplicate-of flag accepts an issue number or URL and marks the closed issue as a duplicate of the referenced one. You can also use --reason duplicate to set the close reason without linking a specific issue.


# Close as duplicate, linking to the original issue
gh issue close 123 --duplicate-of 456

# Close with duplicate reason only
gh issue close 123 --reason duplicate

JSON support for gh agent-task

gh agent-task list and gh agent-task view now support --json, --jq, and --template flags, consistent with other gh commands.

gh agent-task list --json id,name,state
gh agent-task view <id> --json state --jq '.state'

What's Changed

✨ Features
🐛 Fixes
📚 Docs & Chores
:dependabot: Dependencies

New Contributors

Full Changelog: cli/cli@v2.87.3...v2.88.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@ivy-s-renovate-bot ivy-s-renovate-bot Bot added the type:chore Dependency updates, refactoring, cleanup label Mar 11, 2026
@ivy-s-renovate-bot ivy-s-renovate-bot Bot force-pushed the renovate/github-cli-cli-2.x branch from fa3b0c8 to 488c34d Compare March 12, 2026 18:15
@ivy-s-renovate-bot ivy-s-renovate-bot Bot changed the title chore(deps): update dependency github:cli/cli to v2.88.0 chore(deps): update dependency github:cli/cli to v2.88.1 Mar 12, 2026
@ivy-s-renovate-bot ivy-s-renovate-bot Bot force-pushed the renovate/github-cli-cli-2.x branch 2 times, most recently from 94fdec2 to 2dcd231 Compare March 19, 2026 18:16
@ivy-s-renovate-bot ivy-s-renovate-bot Bot force-pushed the renovate/github-cli-cli-2.x branch from 2dcd231 to 2791574 Compare March 26, 2026 18:19
@ivy-s-renovate-bot ivy-s-renovate-bot Bot changed the title chore(deps): update dependency github:cli/cli to v2.88.1 chore(deps): update dependency github:cli/cli to v2.89.0 Mar 26, 2026
@ivy-s-renovate-bot ivy-s-renovate-bot Bot force-pushed the renovate/github-cli-cli-2.x branch 5 times, most recently from 7645b1c to 5389346 Compare April 5, 2026 12:12
@ivy-s-renovate-bot ivy-s-renovate-bot Bot force-pushed the renovate/github-cli-cli-2.x branch 2 times, most recently from 4283321 to 7264018 Compare April 7, 2026 12:21
@ivy-s-renovate-bot ivy-s-renovate-bot Bot force-pushed the renovate/github-cli-cli-2.x branch from 7264018 to f50c824 Compare April 16, 2026 18:23
@ivy-s-renovate-bot ivy-s-renovate-bot Bot changed the title chore(deps): update dependency github:cli/cli to v2.89.0 chore(deps): update dependency github:cli/cli to v2.90.0 Apr 16, 2026
@ivy-s-renovate-bot ivy-s-renovate-bot Bot force-pushed the renovate/github-cli-cli-2.x branch from f50c824 to cf3bc78 Compare April 22, 2026 12:18
@ivy-s-renovate-bot ivy-s-renovate-bot Bot changed the title chore(deps): update dependency github:cli/cli to v2.90.0 chore(deps): update dependency github:cli/cli to v2.91.0 Apr 22, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

type:chore Dependency updates, refactoring, cleanup

Projects

Status: Triage 📥

Development

Successfully merging this pull request may close these issues.

0 participants