@ekkos/cli 1.2.7 → 1.2.9

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.
@@ -470,11 +470,22 @@ async function init(options) {
470
470
  }
471
471
  // Summary with prominent next step
472
472
  const ideNames = installedIDEs.map(id => id === 'claude' ? 'Claude Code' : id === 'cursor' ? 'Cursor' : 'Windsurf');
473
+ const mcpPaths = {
474
+ claude: platform_1.CLAUDE_CONFIG,
475
+ cursor: platform_1.CURSOR_MCP,
476
+ windsurf: platform_1.WINDSURF_MCP
477
+ };
473
478
  console.log('');
474
479
  console.log(chalk_1.default.green.bold('╔═══════════════════════════════════════╗'));
475
480
  console.log(chalk_1.default.green.bold('║ ✓ Setup complete! ║'));
476
481
  console.log(chalk_1.default.green.bold('╚═══════════════════════════════════════╝'));
477
482
  console.log('');
483
+ console.log(chalk_1.default.white.bold(' MCP configured:'));
484
+ for (const ide of installedIDEs) {
485
+ const name = ide === 'claude' ? 'Claude Code' : ide === 'cursor' ? 'Cursor' : 'Windsurf';
486
+ console.log(chalk_1.default.gray(` ${name} → ${mcpPaths[ide]}`));
487
+ }
488
+ console.log('');
478
489
  console.log(chalk_1.default.yellow.bold(' NEXT STEPS:'));
479
490
  console.log('');
480
491
  console.log(chalk_1.default.white(` 1. Restart ${ideNames.join(' / ')}`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ekkos/cli",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "Setup ekkOS memory for AI coding assistants (Claude Code, Cursor, Windsurf)",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -364,21 +364,20 @@ Call `ekkOS_Directive` when user says:
364
364
  **EVERY response MUST end with this footer:**
365
365
  ```
366
366
  ---
367
- {IDE} ({Model}) · 🧠 **ekkOS_™** · Turn {N} · {SessionName} · 📅 {Timestamp}
367
+ {IDE} ({Model}) · 🧠 **ekkOS_™** · {SessionName} · 📅 {Timestamp}
368
368
  ```
369
369
 
370
370
  **How to detect values:**
371
371
  - **IDE**: Claude Code, Cursor, Windsurf, etc. (from environment)
372
372
  - **Model**: Sonnet 4.5, Opus 4.5, etc. (from your model name)
373
- - **Turn Number**: From hook header (e.g., "Turn 47") - starts at 0 for each new session
374
373
  - **Session Name**: From hook header (e.g., "sol-gem-dig") - human-readable session identifier
375
- - **Timestamp**: From hook header (accurate local time in EST)
374
+ - **Timestamp**: From hook header (accurate local time in EST, include time)
376
375
 
377
376
  **Examples:**
378
- - `Claude Code (Sonnet 4.5) · 🧠 **ekkOS_™** · Turn 12 · cosmic-penguin-runs · 📅 2026-01-09 4:50 PM EST`
379
- - `Cursor (Claude Sonnet 4) · 🧠 **ekkOS_™** · Turn 5 · bright-falcon-soars · 📅 2026-01-09 10:15 AM EST`
377
+ - `Claude Code (Opus 4.6) · 🧠 **ekkOS_™** · cosmic-penguin-runs · 📅 2026-01-09 4:50 PM EST`
378
+ - `Cursor (Claude Sonnet 4) · 🧠 **ekkOS_™** · bright-falcon-soars · 📅 2026-01-09 10:15 AM EST`
380
379
 
381
- **The hook header shows:** `🧠 ekkOS Memory | Turn {N} | {Context%} | {SessionName} | {timestamp}`
380
+ **The hook header shows:** `🧠 ekkOS Memory | {SessionName} | {timestamp}`
382
381
 
383
382
  ---
384
383
 
@@ -325,8 +325,7 @@ if ($skillReminders.Count -gt 0) {
325
325
 
326
326
  $output += @"
327
327
 
328
- <footer-format>End responses with: Claude Code ({Model}) · 🧠 ekkOS_™ · $sessionName · $timestamp</footer-format>
329
- <footer-note>Do not include a turn counter in the footer.</footer-note>
328
+ <footer-format>End responses with: Claude Code ({Model}) · 🧠 ekkOS_™ · $sessionName · 📅 $timestamp</footer-format>
330
329
  "@
331
330
 
332
331
  Write-Output $output