@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.
Files changed (2) hide show
  1. package/bin/cli.mjs +8 -15
  2. 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 tools
375
+ // 7. Claude Code CLI (the only CLI actually used by the server)
376
376
  console.log('');
377
- for (const [name, desc] of [
378
- ['claude', 'Claude Code CLI (Anthropic)'],
379
- ['codex', 'Codex CLI (OpenAI)'],
380
- ['gemini', 'Gemini CLI (Google)'],
381
- ]) {
382
- try {
383
- const versionCmd = name === 'gemini' ? `${name} --version` : `${name} --version`;
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gzmagyari/kanbanboard",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "AI-powered Kanban dashboard with LLM integration, Claude Code agents, and MCP server support",
5
5
  "type": "module",
6
6
  "bin": {