@willh/copilotstatusline 0.1.0 → 0.2.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/NOTICE +1 -1
- package/README.md +7 -3
- package/dist/copilotstatusline.js +3745 -1035
- package/docs/USAGE.md +3 -3
- package/docs/WINDOWS.md +1 -1
- package/package.json +8 -3
package/NOTICE
CHANGED
|
@@ -5,4 +5,4 @@ Copyright (c) 2025 Matthew Breedlove (https://github.com/sirmalloc)
|
|
|
5
5
|
This project is licensed under the MIT License.
|
|
6
6
|
See the LICENSE file for details.
|
|
7
7
|
|
|
8
|
-
Official repository: https://github.com/
|
|
8
|
+
Official repository: https://github.com/doggy8088/copilotstatusline
|
package/README.md
CHANGED
|
@@ -17,13 +17,13 @@ The implementation targets the user-level Copilot settings file at `$COPILOT_HOM
|
|
|
17
17
|
Launch the configuration UI:
|
|
18
18
|
|
|
19
19
|
```sh
|
|
20
|
-
npx -y copilotstatusline@latest
|
|
20
|
+
npx -y @willh/copilotstatusline@latest
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Choose `Install or repair Copilot integration`, or install non-interactively:
|
|
24
24
|
|
|
25
25
|
```sh
|
|
26
|
-
npx -y copilotstatusline@latest --install npm
|
|
26
|
+
npx -y @willh/copilotstatusline@latest --install npm
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
The installer merges the following keys into the existing Copilot settings and preserves unrelated settings:
|
|
@@ -32,7 +32,7 @@ The installer merges the following keys into the existing Copilot settings and p
|
|
|
32
32
|
{
|
|
33
33
|
"statusLine": {
|
|
34
34
|
"type": "command",
|
|
35
|
-
"command": "npx -y copilotstatusline@latest",
|
|
35
|
+
"command": "npx -y @willh/copilotstatusline@latest",
|
|
36
36
|
"padding": 0
|
|
37
37
|
},
|
|
38
38
|
"footer": {
|
|
@@ -98,6 +98,10 @@ bun test
|
|
|
98
98
|
bun run build
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
+
## Credits
|
|
102
|
+
|
|
103
|
+
The interactive configuration UI and status-line editing experience are adapted from [ccstatusline](https://github.com/sirmalloc/ccstatusline), created by sirmalloc.
|
|
104
|
+
|
|
101
105
|
## Upstream references
|
|
102
106
|
|
|
103
107
|
- [Copilot CLI configuration directory reference](https://docs.github.com/en/copilot/reference/copilot-cli-reference/cli-config-dir-reference)
|