github-llm-council 2.0.1 → 2.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/bin/cli.js +22 -38
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -7,54 +7,38 @@ import path from 'node:path';
|
|
|
7
7
|
const __filename = fileURLToPath(import.meta.url);
|
|
8
8
|
const __dirname = path.dirname(__filename);
|
|
9
9
|
|
|
10
|
-
// Check for GitHub Copilot CLI before starting
|
|
10
|
+
// Check for GitHub Copilot CLI before starting (cross-platform)
|
|
11
11
|
function checkCopilotCLI() {
|
|
12
12
|
try {
|
|
13
|
-
|
|
13
|
+
// Use 'where' on Windows, 'which' on Unix
|
|
14
|
+
const isWindows = process.platform === 'win32';
|
|
15
|
+
const checkCmd = isWindows ? 'where copilot' : 'which copilot';
|
|
16
|
+
execSync(checkCmd, { stdio: 'pipe' });
|
|
14
17
|
return true;
|
|
15
18
|
} catch {
|
|
16
19
|
return false;
|
|
17
20
|
}
|
|
18
21
|
}
|
|
19
22
|
|
|
20
|
-
function checkGitHubCLI() {
|
|
21
|
-
try {
|
|
22
|
-
execSync('gh --version', { stdio: 'pipe' });
|
|
23
|
-
return true;
|
|
24
|
-
} catch {
|
|
25
|
-
return false;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
if (!checkGitHubCLI()) {
|
|
30
|
-
console.error(`
|
|
31
|
-
╔════════════════════════════════════════════════════════════════════╗
|
|
32
|
-
║ ERROR: GitHub CLI (gh) is not installed ║
|
|
33
|
-
╠════════════════════════════════════════════════════════════════════╣
|
|
34
|
-
║ This tool requires the GitHub CLI to access Copilot models. ║
|
|
35
|
-
║ ║
|
|
36
|
-
║ Install it from: https://cli.github.com/ ║
|
|
37
|
-
║ ║
|
|
38
|
-
║ After installing, authenticate with: ║
|
|
39
|
-
║ gh auth login ║
|
|
40
|
-
╚════════════════════════════════════════════════════════════════════╝
|
|
41
|
-
`);
|
|
42
|
-
process.exit(1);
|
|
43
|
-
}
|
|
44
|
-
|
|
45
23
|
if (!checkCopilotCLI()) {
|
|
46
24
|
console.error(`
|
|
47
|
-
|
|
48
|
-
║ ERROR: GitHub Copilot CLI
|
|
49
|
-
|
|
50
|
-
║ This tool requires the Copilot
|
|
51
|
-
║
|
|
52
|
-
║ Install
|
|
53
|
-
║
|
|
54
|
-
║
|
|
55
|
-
║
|
|
56
|
-
║
|
|
57
|
-
|
|
25
|
+
╔══════════════════════════════════════════════════════════════════════╗
|
|
26
|
+
║ ERROR: GitHub Copilot CLI is not installed ║
|
|
27
|
+
╠══════════════════════════════════════════════════════════════════════╣
|
|
28
|
+
║ This tool requires the GitHub Copilot CLI to access Copilot models. ║
|
|
29
|
+
║ ║
|
|
30
|
+
║ Install with npm: ║
|
|
31
|
+
║ npm install -g @github/copilot ║
|
|
32
|
+
║ ║
|
|
33
|
+
║ Or with Homebrew (macOS/Linux): ║
|
|
34
|
+
║ brew install copilot-cli ║
|
|
35
|
+
║ ║
|
|
36
|
+
║ Or with WinGet (Windows): ║
|
|
37
|
+
║ winget install GitHub.Copilot ║
|
|
38
|
+
║ ║
|
|
39
|
+
║ You also need an active GitHub Copilot subscription. ║
|
|
40
|
+
║ Learn more: https://github.com/github/copilot-cli ║
|
|
41
|
+
╚══════════════════════════════════════════════════════════════════════╝
|
|
58
42
|
`);
|
|
59
43
|
process.exit(1);
|
|
60
44
|
}
|