@sp-editor/native-bridge 1.0.5 → 1.0.6

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.
@@ -52,7 +52,7 @@ switch (cmd) {
52
52
  console.log(' sp-editor-bridge status Show installation status')
53
53
  console.log('')
54
54
  console.log('Prerequisites:')
55
- console.log(' gh auth login Authenticate with GitHub')
56
- console.log(' gh copilot First-time Copilot CLI setup')
55
+ console.log(' npm install -g @github/copilot Install the Copilot CLI')
56
+ console.log(' copilot login Authenticate with GitHub')
57
57
  break
58
58
  }
package/dist/copilot.js CHANGED
@@ -46,7 +46,7 @@ const path_1 = __importDefault(require("path"));
46
46
  const protocol_1 = require("./protocol");
47
47
  /** Timeout for a single copilot call (ms). */
48
48
  const COPILOT_TIMEOUT_MS = 180000; // 3 minutes — first messages with large system prompts can take longer
49
- /** Timeout for fast health-check spawns (copilot --version, gh auth token). */
49
+ /** Timeout for fast health-check spawns (copilot --version, copilot login). */
50
50
  const CHECK_TIMEOUT_MS = 5000;
51
51
  // ANSI escape code pattern
52
52
  const ANSI_PATTERN = /\x1B\[[0-9;]*[A-Za-z]|\x1B\][^\x07]*\x07|\x1B[()][AB0-9]/g;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sp-editor/native-bridge",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "SP Editor native messaging bridge — routes AI prompts through the local GitHub Copilot CLI",
5
5
  "main": "dist/host.js",
6
6
  "bin": {