@lioneltay/claude-pilot 0.1.7 → 0.1.9
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/LICENSE +21 -0
- package/README.md +4 -18
- package/dist/server.js +30 -30
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Lionel Tay
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -8,30 +8,18 @@ Run [Claude Code](https://docs.anthropic.com/en/docs/claude-code) through GitHub
|
|
|
8
8
|
|
|
9
9
|
You need an active GitHub Copilot subscription (Individual, Business, or Enterprise).
|
|
10
10
|
|
|
11
|
-
### 2. Copilot CLI
|
|
12
|
-
|
|
13
|
-
Install the GitHub Copilot CLI:
|
|
11
|
+
### 2. [Copilot CLI](https://docs.github.com/en/copilot/github-copilot-in-the-cli)
|
|
14
12
|
|
|
15
13
|
```bash
|
|
16
14
|
npm install -g @github/copilot
|
|
17
|
-
|
|
18
|
-
# Verify installation
|
|
19
|
-
copilot --version
|
|
20
15
|
```
|
|
21
16
|
|
|
22
|
-
### 3. Claude Code
|
|
23
|
-
|
|
24
|
-
Install the Claude Code CLI:
|
|
17
|
+
### 3. [Claude Code](https://docs.anthropic.com/en/docs/claude-code)
|
|
25
18
|
|
|
26
19
|
```bash
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
# Verify installation
|
|
30
|
-
claude --version
|
|
20
|
+
npm install -g @anthropic-ai/claude-code
|
|
31
21
|
```
|
|
32
22
|
|
|
33
|
-
See [Claude Code setup docs](https://code.claude.com/docs/en/setup) for more details.
|
|
34
|
-
|
|
35
23
|
## Installation
|
|
36
24
|
|
|
37
25
|
```bash
|
|
@@ -50,9 +38,7 @@ claude-pilot
|
|
|
50
38
|
|
|
51
39
|
## Features
|
|
52
40
|
|
|
53
|
-
- **Web Search** - Works via Copilot CLI
|
|
54
|
-
- **Cost Optimization** - Tool continuations are free, only new user messages are charged (~$0.04)
|
|
55
|
-
- **Free Suggestions** - Autocomplete requests routed to GPT-4.1 (free model)
|
|
41
|
+
- **Web Search** - Works via Copilot CLI
|
|
56
42
|
- **Auto Token Refresh** - Copilot tokens refresh automatically before expiry
|
|
57
43
|
- **Dashboard** - Web-based log viewer at `http://localhost:51080/`
|
|
58
44
|
- **Zero Config** - Proxy auto-starts and finds an available port
|