@ekkos/cli 1.2.6 → 1.2.8
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/dist/commands/run.js
CHANGED
|
@@ -912,10 +912,11 @@ function launchWithWindowsTerminal(options) {
|
|
|
912
912
|
if (options.noProxy)
|
|
913
913
|
runArgs.push('--skip-proxy');
|
|
914
914
|
// Write a temp batch file to avoid all quoting issues
|
|
915
|
+
// wt.exe doesn't resolve PATH for npm global bins — must use `cmd /c`
|
|
915
916
|
const batPath = path.join(os.tmpdir(), `ekkos-wt-${launchTime}.cmd`);
|
|
916
917
|
const batContent = [
|
|
917
918
|
'@echo off',
|
|
918
|
-
`wt --title "Claude Code" -d "${cwd}" ekkos ${runArgs.join(' ')} ; split-pane -V -s 0.4 --title "ekkOS Dashboard" -d "${cwd}" ekkos dashboard --wait-for-new --refresh 2000`,
|
|
919
|
+
`wt --title "Claude Code" -d "${cwd}" cmd /c ekkos ${runArgs.join(' ')} ; split-pane -V -s 0.4 --title "ekkOS Dashboard" -d "${cwd}" cmd /c ekkos dashboard --wait-for-new --refresh 2000`,
|
|
919
920
|
].join('\r\n');
|
|
920
921
|
try {
|
|
921
922
|
fs.writeFileSync(batPath, batContent);
|
package/package.json
CHANGED
package/templates/CLAUDE.md
CHANGED
|
@@ -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_™** ·
|
|
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 (
|
|
379
|
-
- `Cursor (Claude Sonnet 4) · 🧠 **ekkOS_™** ·
|
|
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 |
|
|
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
|