@ekkos/cli 1.2.7 → 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/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
|