ghcc-client 1.0.1 → 1.0.3
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 +11 -21
- package/assets/ttyd-base.html +228 -72
- package/dist/assets/ttyd-base.html +228 -72
- package/dist/cli.js +4 -3
- package/dist/cli.js.map +1 -1
- package/dist/session-manager.d.ts.map +1 -1
- package/dist/session-manager.js +10 -2
- package/dist/session-manager.js.map +1 -1
- package/dist/setup.js +0 -5
- package/dist/setup.js.map +1 -1
- package/package.json +2 -2
- package/assets/terminal.html +0 -123
package/README.md
CHANGED
|
@@ -2,13 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
A Node.js CLI utility tool that allows its users to remotely interact with a GitHub Copilot CLI session from their mobiles, tablets and any other devices that support web-browsers.
|
|
4
4
|
|
|
5
|
-
## Features
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
## Recommended Workflow (Mobile)
|
|
7
|
+
|
|
8
|
+
For the best mobile experience, especially with GitHub Copilot CLI, we recommend this vocal-friendly workflow:
|
|
9
|
+
|
|
10
|
+
1. **Start normally**: Run `ghcc-client` in your terminal.
|
|
11
|
+
2. **Connect mobile**: Ensure your mobile is on the same network as your PC and open the **Network URL**.
|
|
12
|
+
3. **Voice Input**: On your mobile, tap on the input bar to bring up your keyboard. If using **Gboard** (Android/iOS), tap the microphone icon to use **Speech-to-Text (STT)**. Speak your prompt, and it will be typed directly into the terminal.
|
|
13
|
+
4. **Command Navigation**: Use the custom **keyboard toolbar** (rendered in the browser) for desktop-specific keys like `Ctrl`, `Alt`, `Tab`, and arrows. This allows you to navigate Copilot CLI's menus and suggestions while using voice for the actual prompts.
|
|
14
|
+
|
|
15
|
+
This setup effectively turns GitHub Copilot CLI into a partially voice-responsive assistant on your mobile device.
|
|
16
|
+
|
|
12
17
|
|
|
13
18
|
## Requirements
|
|
14
19
|
|
|
@@ -232,27 +237,12 @@ See the [LICENSE](./LICENSE) file for full details.
|
|
|
232
237
|
Copyright (c) 2026 All rights reserved - Licensed under GPL-3.0
|
|
233
238
|
```
|
|
234
239
|
|
|
235
|
-
## Dependencies
|
|
236
|
-
|
|
237
|
-
This project relies on the following third-party components:
|
|
238
|
-
|
|
239
|
-
| Component | Purpose |
|
|
240
|
-
|-----------|---------|
|
|
241
|
-
| **ttyd** | Terminal-to-web server using WebSockets and HTTP |
|
|
242
|
-
| **tmux** | Session persistence and terminal multiplexing |
|
|
243
|
-
| **localtunnel** | Optional public URL and tunneling for remote access |
|
|
244
|
-
| **qrcode-terminal** | QR code generation for mobile access links |
|
|
245
|
-
|
|
246
240
|
## Support & Feedback
|
|
247
241
|
|
|
248
242
|
- **GitHub Profile:** [tanay-787](https://github.com/tanay-787)
|
|
249
243
|
- **Bug reports & features:** [Issue tracker](https://github.com/tanay-787/ghcc-client/issues)
|
|
250
244
|
- **General discussion:** [Discussions](https://github.com/tanay-787/ghcc-client/discussions)
|
|
251
|
-
- **Security concerns:** See [SECURITY.md](./SECURITY.md)
|
|
252
245
|
|
|
253
246
|
Have questions or ideas? Open an issue—we're here to help!
|
|
254
247
|
|
|
255
248
|
---
|
|
256
|
-
|
|
257
|
-
**Co-authored by:** Tanay Gupte & GitHub Copilot CLI
|
|
258
|
-
**Last updated:** 2026 | Built with TypeScript and Node.js
|