:copilot: Manage GitHub Copilot Coding Agent From the GitHub CLI
This GitHub CLI release introduces the agent-task
commandset for managing coding agent tasks in gh
:
- Create tasks:
gh agent-task create "refactor the codebase"
- List all your tasks:
gh agent-task list
- View task details:
gh agent-task view 1234
- View the task log in real-time:
gh agent-task view 1234 --log --follow
For more information about command line flags and arguments, run gh agent-task <command> --help
.
The agent-task
commandset also ships with the following aliases for convenience:
gh agent-tasks
gh agent
gh agents
ℹ️ The agent-task
commandset is in preview and is subject to change without notice.
Got feedback? Let us know what you like or don't like in an issue ❤️
What's Changed
:sparkles: Features
gh agent-task
commandset by @BagToad and @babakks in https://github.com/cli/cli/pull/11797
:bug: Fixes
- Pin release runner image to Windows 2022 by @babakks in https://github.com/cli/cli/pull/11799
Full Changelog: https://github.com/cli/cli/compare/v2.79.0...v2.80.0