@ekkos/cli 1.0.35 → 1.1.0

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 (36) hide show
  1. package/README.md +57 -0
  2. package/dist/commands/dashboard.js +561 -186
  3. package/dist/deploy/settings.js +13 -26
  4. package/package.json +2 -4
  5. package/templates/CLAUDE.md +135 -23
  6. package/templates/ekkos-manifest.json +8 -8
  7. package/templates/hooks/assistant-response.ps1 +256 -160
  8. package/templates/hooks/assistant-response.sh +130 -66
  9. package/templates/hooks/hooks.json +24 -6
  10. package/templates/hooks/lib/contract.sh +43 -31
  11. package/templates/hooks/lib/count-tokens.cjs +0 -0
  12. package/templates/hooks/lib/ekkos-reminders.sh +0 -0
  13. package/templates/hooks/lib/state.sh +53 -1
  14. package/templates/hooks/session-start.ps1 +91 -391
  15. package/templates/hooks/session-start.sh +201 -166
  16. package/templates/hooks/stop.ps1 +202 -341
  17. package/templates/hooks/stop.sh +275 -948
  18. package/templates/hooks/user-prompt-submit.ps1 +224 -548
  19. package/templates/hooks/user-prompt-submit.sh +382 -456
  20. package/templates/plan-template.md +0 -0
  21. package/templates/spec-template.md +0 -0
  22. package/templates/windsurf-hooks/hooks.json +9 -2
  23. package/templates/windsurf-hooks/install.sh +0 -0
  24. package/templates/windsurf-hooks/lib/contract.sh +2 -0
  25. package/templates/windsurf-hooks/post-cascade-response.sh +0 -0
  26. package/templates/windsurf-hooks/pre-user-prompt.sh +0 -0
  27. package/templates/agents/README.md +0 -182
  28. package/templates/agents/code-reviewer.md +0 -166
  29. package/templates/agents/debug-detective.md +0 -169
  30. package/templates/agents/ekkOS_Vercel.md +0 -99
  31. package/templates/agents/extension-manager.md +0 -229
  32. package/templates/agents/git-companion.md +0 -185
  33. package/templates/agents/github-test-agent.md +0 -321
  34. package/templates/agents/railway-manager.md +0 -179
  35. package/templates/windsurf-hooks/before-submit-prompt.sh +0 -238
  36. package/templates/windsurf-skills/ekkos-memory/SKILL.md +0 -219
package/README.md ADDED
@@ -0,0 +1,57 @@
1
+ # @ekkos/cli
2
+
3
+ Persistent cognitive memory for AI coding assistants. ekkOS gives Claude Code, Cursor, and Windsurf long-term memory — patterns, decisions, and operational intelligence that compound across every interaction.
4
+
5
+ ## Quick Start
6
+
7
+ ```bash
8
+ # Install globally
9
+ npm install -g @ekkos/cli
10
+
11
+ # Authenticate and configure your IDE
12
+ ekkos init
13
+
14
+ # Launch Claude Code with memory
15
+ ekkos run
16
+ ```
17
+
18
+ ## Commands
19
+
20
+ | Command | Description |
21
+ |---------|-------------|
22
+ | `ekkos init` | Authenticate and configure your IDE (Claude Code, Cursor, Windsurf) |
23
+ | `ekkos run` | Launch Claude Code with ekkOS memory connected |
24
+ | `ekkos run --dashboard` | Launch with live metrics dashboard (tmux split) |
25
+ | `ekkos status` | Check connection and memory health |
26
+ | `ekkos dashboard` | Open the live session dashboard |
27
+ | `ekkos export` | Export your patterns and memory as JSON |
28
+ | `ekkos --help` | Show all commands |
29
+
30
+ ## What It Does
31
+
32
+ - **Remembers what works** — Patterns from successful solutions are recalled automatically
33
+ - **Learns from mistakes** — Anti-patterns prevent repeating the same errors
34
+ - **Crosses sessions** — Knowledge persists across conversations, projects, and tools
35
+ - **Gets smarter over time** — Success rates compound as patterns are verified
36
+
37
+ ## How It Works
38
+
39
+ ekkOS installs hooks into your AI coding assistant that:
40
+
41
+ 1. **Before each prompt** — Searches 11 memory layers for relevant patterns
42
+ 2. **After each response** — Captures new solutions as reusable patterns
43
+ 3. **Between sessions** — Preserves context through eviction and rehydration
44
+
45
+ ## Requirements
46
+
47
+ - Node.js >= 18
48
+ - An ekkOS account ([platform.ekkos.dev](https://platform.ekkos.dev/signup))
49
+ - One of: Claude Code, Cursor, Windsurf, or VS Code
50
+
51
+ ## Documentation
52
+
53
+ [docs.ekkos.dev](https://docs.ekkos.dev)
54
+
55
+ ## License
56
+
57
+ Proprietary — see [ekkos.dev/terms](https://ekkos.dev/terms)