You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/github-cli-agent/index.md
+73-18Lines changed: 73 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ canonical_url:
13
13
<!-- truncate -->
14
14
15
15
GitHub Copilot CLI is now in public preview
16
-
GitHub bought power of GitHub Copilot coding agent directly to your terminal, with GitHub Copilot CLI, you can work locally and synchronously with an AI agent that understands your code and GitHub context in depth.
16
+
GitHub bought power of GitHub Copilot coding agent directly to your terminal, with [GitHub Copilot CLI](https://github.com/features/copilot/cli?utm_source=changelog-amp-linkedin&utm_campaign=agentic-copilot-cli-launch-2025), you can work locally and synchronously with an AI agent that understands your code and GitHub context in depth.
17
17
18
18
---
19
19
@@ -33,6 +33,8 @@ GitHub Copilot CLI is now in `public preview`, and it’s designed to bring AI-p
33
33
- ✅**Full control** – Every action requires your explicit approval.
34
34
35
35
Plus, extend Copilot CLI's capabilities and context through **custom MCP servers**.
36
+
Agent-powered, GitHub-native
37
+
Execute coding tasks with an agent that knows your repositories, issues, and pull requests — all natively in your terminal.
36
38
37
39
38
40
---
@@ -86,13 +88,19 @@ copilot --banner
86
88
```
87
89
88
90
Authenticate with your GitHub account:
89
-
91
+
If you're not currently logged in to GitHub, you'll be prompted to use the `/login` slash command. Enter this command and follow the on-screen instructions to authenticate.
90
92
```bash
91
93
/login
92
94
```
93
95
94
96
Or authenticate using a **Personal Access Token (PAT):**
95
97
98
+
You can also authenticate using a fine-graned PAT with the "Copilot Rrequests" permission enabled.
Once you installed run copilot on your terminal, Image of the splash screen for the Copilot CLI. The usage is pretty straight forward you can use the arrow keys to navigate to proceed cancel instruction etc.
108
116
117
+
Each time you submit a prompt to GitHub Copilot CLI, your monthly quota of premium requests is reduced by one. For information about premium requests,

110
123
111
124
Launch Copilot CLI in a project folder:
@@ -139,20 +152,50 @@ Ctrl + C (twice)
139
152
140
153
Now lets get start with development, here fork this repo and activate GitHub CLI and enter the below bash commands. [Website](https://github.com/recodehive/recode-website)
141
154
142
-
### Development
155
+
### List of all commands in CLI
156
+
I have linked the offical website repo to log any bugs or do direct PR. [GitHub CLI repo](https://github.com/github/copilot-cli?utm_source=changelog-amp-linkedin&utm_campaign=agentic-copilot-cli-launch-2025) and [Official Documentation](https://docs.github.com/en/copilot/how-tos/use-copilot-agents/use-copilot-cli?utm_campaign=agentic-copilot-cli-launch-2025&utm_source=changelog-amp-linkedin)
157
+
158
+
`alias`
159
+
`api`
160
+
`attestation`
161
+
`auth`
162
+
`browse`
163
+
`cache`
164
+
`co`
165
+
`codespace`
166
+
`completion`
167
+
`config`
168
+
`extension`
169
+
`gist`
170
+
`gpg-key`
171
+
`issue`
172
+
`label`
173
+
`org`
174
+
`pr`
175
+
`preview`
176
+
`project`
177
+
`release`
178
+
`repo`
179
+
` ruleset`
180
+
`run`
181
+
`search`
182
+
`secret`
183
+
`ssh-key`
184
+
`status`
185
+
`variable`
186
+
`workflow`
187
+
188
+
For preview to run enter the following command. 👇🏻
143
189
144
-
```bash
145
-
gh copilot suggest "start development server for docusaurus"
146
-
gh copilot suggest "build docusaurus site for production"
147
-
gh copilot suggest "deploy docusaurus site"
148
-
```
149
190

150
191
151
-
### Package Management
192
+
193
+
### Documentation
152
194
153
195
```bash
154
-
gh copilot suggest "install new dependencies for react project"
155
-
gh copilot suggest "update docusaurus to latest version"
196
+
gh copilot suggest "create new documentation page in docusaurus"
197
+
gh copilot suggest "organize documentation with sidebars"
198
+
gh copilot suggest "create code of conduct for repository"
156
199
```
157
200
158
201
### Git Workflow
@@ -170,13 +213,6 @@ gh copilot suggest "check repository status and pending changes"
170
213
gh copilot suggest "merge feature branch after review"
171
214
```
172
215
173
-
### Documentation
174
-
175
-
```bash
176
-
gh copilot suggest "create new documentation page in docusaurus"
177
-
gh copilot suggest "organize documentation with sidebars"
178
-
gh copilot suggest "create code of conduct for repository"
0 commit comments