@ekkos/cli 1.0.36 → 1.1.1

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 (31) hide show
  1. package/README.md +57 -0
  2. package/dist/commands/dashboard.js +561 -186
  3. package/dist/commands/run.js +1 -1
  4. package/dist/deploy/settings.js +13 -26
  5. package/package.json +1 -1
  6. package/templates/hooks/assistant-response.ps1 +94 -26
  7. package/templates/hooks/hooks.json +24 -12
  8. package/templates/hooks/lib/count-tokens.cjs +0 -0
  9. package/templates/hooks/lib/ekkos-reminders.sh +0 -0
  10. package/templates/hooks/session-start.ps1 +61 -224
  11. package/templates/hooks/session-start.sh +1 -1
  12. package/templates/hooks/stop.ps1 +103 -249
  13. package/templates/hooks/stop.sh +1 -1
  14. package/templates/hooks/user-prompt-submit.ps1 +129 -519
  15. package/templates/hooks/user-prompt-submit.sh +2 -2
  16. package/templates/plan-template.md +0 -0
  17. package/templates/spec-template.md +0 -0
  18. package/templates/windsurf-hooks/install.sh +0 -0
  19. package/templates/windsurf-hooks/lib/contract.sh +0 -0
  20. package/templates/windsurf-hooks/post-cascade-response.sh +0 -0
  21. package/templates/windsurf-hooks/pre-user-prompt.sh +0 -0
  22. package/templates/agents/README.md +0 -182
  23. package/templates/agents/code-reviewer.md +0 -166
  24. package/templates/agents/debug-detective.md +0 -169
  25. package/templates/agents/ekkOS_Vercel.md +0 -99
  26. package/templates/agents/extension-manager.md +0 -229
  27. package/templates/agents/git-companion.md +0 -185
  28. package/templates/agents/github-test-agent.md +0 -321
  29. package/templates/agents/railway-manager.md +0 -179
  30. package/templates/windsurf-hooks/before-submit-prompt.sh +0 -238
  31. 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)