@gzmagyari/kanbanboard 1.0.4 → 1.0.5
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.mjs +8 -15
- package/package.json +1 -1
package/bin/cli.mjs
CHANGED
|
@@ -372,22 +372,15 @@ async function cmdDoctor() {
|
|
|
372
372
|
console.log(`[info] LLM disabled (set LLM_ENABLED=1 to enable)`);
|
|
373
373
|
}
|
|
374
374
|
|
|
375
|
-
// 7. CLI
|
|
375
|
+
// 7. Claude Code CLI (the only CLI actually used by the server)
|
|
376
376
|
console.log('');
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
const version = execSync(versionCmd, {
|
|
385
|
-
encoding: 'utf8', timeout: 10000, stdio: ['pipe', 'pipe', 'pipe'],
|
|
386
|
-
}).trim().split('\n')[0];
|
|
387
|
-
console.log(`[ok] ${desc}: ${version}`);
|
|
388
|
-
} catch {
|
|
389
|
-
console.log(`[info] ${desc}: not found in PATH`);
|
|
390
|
-
}
|
|
377
|
+
try {
|
|
378
|
+
const version = execSync('claude --version', {
|
|
379
|
+
encoding: 'utf8', timeout: 10000, stdio: ['pipe', 'pipe', 'pipe'],
|
|
380
|
+
}).trim().split('\n')[0];
|
|
381
|
+
console.log(`[ok] Claude Code CLI: ${version}`);
|
|
382
|
+
} catch {
|
|
383
|
+
console.log(`[info] Claude Code CLI: not found in PATH (needed for repo grounding & agents)`);
|
|
391
384
|
}
|
|
392
385
|
|
|
393
386
|
// 8. Port availability
|