ghcc-client 1.0.0 → 1.0.2

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.
Files changed (3) hide show
  1. package/README.md +11 -21
  2. package/dist/cli.js +0 -0
  3. package/package.json +5 -2
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
- - **Persistent Copilot sessions** — Runs Copilot CLI inside tmux so your session survives disconnects, terminal closures, and even host reboots
8
- - **Browser-based terminal** — Uses ttyd to expose the tmux session as a web interface compatible with mobile and desktop browsers
9
- - **Native keyboard toolbar UI** — Custom mobile keyboard toolbar components inspired by Termux app, providing quick access to common terminal shortcuts (Ctrl, Alt, Tab, arrow keys, etc.) for seamless mobile interactions
10
- - **Portrait-based resizing** — Automatically adapts terminal layout for portrait and landscape orientations, optimizing readability on mobile devices
11
- - **Public tunneling** Optional localtunnel integration creates temporary public URLs with QR codes for quick mobile access
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
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ghcc-client",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Remote access client for GitHub Copilot CLI - Access your Copilot session from mobile or any browser",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,7 @@
8
8
  "ghcc-client": "dist/cli.js"
9
9
  },
10
10
  "scripts": {
11
- "build": "tsc && npm run copy-assets",
11
+ "build": "tsc && npm run copy-assets && chmod +x dist/cli.js",
12
12
  "copy-assets": "mkdir -p dist/assets && cp -r assets/* dist/assets/",
13
13
  "dev": "tsc --watch",
14
14
  "prepublishOnly": "npm run build",
@@ -55,5 +55,8 @@
55
55
  },
56
56
  "engines": {
57
57
  "node": ">=14.0.0"
58
+ },
59
+ "overrides": {
60
+ "axios": ">=0.30.0"
58
61
  }
59
62
  }