@github/copilot 0.0.418 → 0.0.419-0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -26
- package/changelog.json +18 -0
- package/index.js +990 -990
- package/package.json +8 -8
- package/prebuilds/win32-arm64/conpty/OpenConsole.exe +0 -0
- package/prebuilds/win32-arm64/conpty/conpty.dll +0 -0
- package/prebuilds/win32-arm64/conpty.node +0 -0
- package/prebuilds/win32-arm64/conpty_console_list.node +0 -0
- package/prebuilds/win32-arm64/keytar.node +0 -0
- package/prebuilds/win32-x64/conpty/OpenConsole.exe +0 -0
- package/prebuilds/win32-x64/conpty/conpty.dll +0 -0
- package/prebuilds/win32-x64/conpty.node +0 -0
- package/prebuilds/win32-x64/conpty_console_list.node +0 -0
- package/prebuilds/win32-x64/keytar.node +0 -0
- package/sdk/index.js +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# GitHub Copilot CLI
|
|
1
|
+
# GitHub Copilot CLI
|
|
2
2
|
|
|
3
3
|
The power of GitHub Copilot, now in your terminal.
|
|
4
4
|
|
|
@@ -38,61 +38,64 @@ If you have access to GitHub Copilot via your organization or enterprise, you ca
|
|
|
38
38
|
|
|
39
39
|
### Installation
|
|
40
40
|
|
|
41
|
-
Install with
|
|
41
|
+
Install with the install script (macOS and Linux):
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
|
|
44
|
+
curl -fsSL https://gh.io/copilot-install | bash
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
+
Or
|
|
48
|
+
|
|
47
49
|
```bash
|
|
48
|
-
|
|
50
|
+
wget -qO- https://gh.io/copilot-install | bash
|
|
49
51
|
```
|
|
50
52
|
|
|
51
|
-
|
|
53
|
+
Use `| sudo bash` to run as root and install to `/usr/local/bin`.
|
|
52
54
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
55
|
+
Set `PREFIX` to install to `$PREFIX/bin/` directory. Defaults to `/usr/local`
|
|
56
|
+
when run as root or `$HOME/.local` when run as a non-root user.
|
|
57
|
+
|
|
58
|
+
Set `VERSION` to install a specific version. Defaults to the latest version.
|
|
59
|
+
|
|
60
|
+
For example, to install version `v0.0.369` to a custom directory:
|
|
56
61
|
|
|
57
62
|
```bash
|
|
58
|
-
|
|
63
|
+
curl -fsSL https://gh.io/copilot-install | VERSION="v0.0.369" PREFIX="$HOME/custom" bash
|
|
59
64
|
```
|
|
60
65
|
|
|
61
|
-
Install with [
|
|
66
|
+
Install with [Homebrew](https://formulae.brew.sh/cask/copilot-cli) (macOS and Linux):
|
|
62
67
|
|
|
63
68
|
```bash
|
|
64
|
-
|
|
69
|
+
brew install copilot-cli
|
|
65
70
|
```
|
|
66
71
|
|
|
67
72
|
```bash
|
|
68
|
-
|
|
73
|
+
brew install copilot-cli@prerelease
|
|
69
74
|
```
|
|
70
75
|
|
|
71
|
-
|
|
76
|
+
|
|
77
|
+
Install with [WinGet](https://github.com/microsoft/winget-cli) (Windows):
|
|
72
78
|
|
|
73
79
|
```bash
|
|
74
|
-
|
|
80
|
+
winget install GitHub.Copilot
|
|
75
81
|
```
|
|
76
82
|
|
|
77
|
-
Or
|
|
78
|
-
|
|
79
83
|
```bash
|
|
80
|
-
|
|
84
|
+
winget install GitHub.Copilot.Prerelease
|
|
81
85
|
```
|
|
82
86
|
|
|
83
|
-
Use `| sudo bash` to run as root and install to `/usr/local/bin`.
|
|
84
|
-
|
|
85
|
-
Set `PREFIX` to install to `$PREFIX/bin/` directory. Defaults to `/usr/local`
|
|
86
|
-
when run as root or `$HOME/.local` when run as a non-root user.
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
Install with [npm](https://www.npmjs.com/package/@github/copilot) (macOS, Linux, and Windows):
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
```bash
|
|
91
|
+
npm install -g @github/copilot
|
|
92
|
+
```
|
|
91
93
|
|
|
92
94
|
```bash
|
|
93
|
-
|
|
95
|
+
npm install -g @github/copilot@prerelease
|
|
94
96
|
```
|
|
95
97
|
|
|
98
|
+
|
|
96
99
|
### Launching the CLI
|
|
97
100
|
|
|
98
101
|
```bash
|
|
@@ -186,6 +189,6 @@ For more information, see the [changelog](./changelog.md).
|
|
|
186
189
|
|
|
187
190
|
We're excited to have you join us early in the Copilot CLI journey.
|
|
188
191
|
|
|
189
|
-
|
|
192
|
+
We're building quickly. Expect frequent updates--please keep your client up to date for the latest features and fixes!
|
|
190
193
|
|
|
191
|
-
Your insights are invaluable! Open issue in this repo, join Discussions, and run `/feedback` from the CLI to submit a confidential feedback survey!
|
|
194
|
+
Your insights are invaluable! Open an issue in this repo, join Discussions, and run `/feedback` from the CLI to submit a confidential feedback survey!
|
package/changelog.json
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "./changelog-schema.json",
|
|
3
3
|
"unpublished": [],
|
|
4
|
+
"0.0.418": [
|
|
5
|
+
{
|
|
6
|
+
"type": "fixed",
|
|
7
|
+
"description": "Agent protected from accidentally killing itself",
|
|
8
|
+
"related_pull_requests": ["https://github.com/github/copilot-agent-runtime/pull/2994"]
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"type": "fixed",
|
|
12
|
+
"description": "Plugin agents specified as file paths in plugin.json load correctly",
|
|
13
|
+
"related_issues": ["https://github.com/github/copilot-cli/issues/1636"],
|
|
14
|
+
"related_pull_requests": ["https://github.com/github/copilot-agent-runtime/pull/3764"]
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "removed",
|
|
18
|
+
"description": "Remove --disable-parallel-tools-execution flag and parallel_tool_execution config option",
|
|
19
|
+
"related_pull_requests": ["https://github.com/github/copilot-agent-runtime/pull/3678"]
|
|
20
|
+
}
|
|
21
|
+
],
|
|
4
22
|
"0.0.417": [
|
|
5
23
|
{
|
|
6
24
|
"type": "added",
|