kodelyth-ecc 1.7.5 → 1.8.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 (44) hide show
  1. package/CHANGELOG.md +16 -3
  2. package/CLAUDE.md +1 -1
  3. package/README.md +8 -9
  4. package/SECURITY.md +5 -6
  5. package/bundles/enterprise.md +1 -1
  6. package/bundles/indie-hacker.md +1 -1
  7. package/bundles/red-team.md +1 -1
  8. package/hooks/hooks.json +13 -0
  9. package/hooks/memory/auto-resolve.js +68 -0
  10. package/hooks/memory/capture-correction.js +16 -0
  11. package/hooks/memory/capture-stop.js +70 -14
  12. package/package.json +1 -1
  13. package/rules/common/agents.md +1 -1
  14. package/rules/common/self-improvement-workflow.md +2 -2
  15. package/scripts/dashboard/data.js +1 -1
  16. package/scripts/dashboard/server.js +1 -1
  17. package/scripts/memory/instincts.js +282 -0
  18. package/scripts/memory/store.js +104 -0
  19. package/social/card-agents.svg +1 -1
  20. package/social/card-install.svg +1 -1
  21. package/social/card-main.svg +1 -1
  22. package/social/facebook-v150.svg +14 -13
  23. package/social/fb-ad-main.svg +128 -0
  24. package/social/fb-post-features.svg +118 -0
  25. package/social/fb-post-launch.svg +144 -0
  26. package/social/fb-post-platforms.svg +135 -0
  27. package/social/github-social-preview.svg +119 -28
  28. package/social/hype-compound-learning.svg +9 -9
  29. package/social/hype-devil-mode.svg +8 -8
  30. package/social/hype-mcp-server.svg +8 -8
  31. package/social/hype-parallel-agents.svg +8 -8
  32. package/social/hype-stats-hero.svg +3 -3
  33. package/social/og-image.svg +116 -30
  34. package/social/readme-hero.svg +4 -4
  35. package/social/section-mcp.svg +1 -1
  36. package/social/twitter-threads.md +3 -3
  37. package/social/x-card-agents-grid.svg +2 -2
  38. package/social/x-card-free.svg +2 -2
  39. package/social/x-card-hook.svg +5 -5
  40. package/tests/memory/instincts.test.js +258 -0
  41. package/tests/memory/store.test.js +82 -0
  42. package/wiki/FAQ.md +1 -1
  43. package/wiki/Home.md +3 -3
  44. package/wiki/Installation-Guide.md +2 -2
@@ -61,7 +61,7 @@
61
61
  <rect x="56" y="40" width="198" height="28" rx="4" fill="url(#badgeGrad)" stroke="#ef4444" stroke-opacity="0.5" stroke-width="1"/>
62
62
  <text x="66" y="59" font-size="11" font-weight="700" fill="#ef4444" letter-spacing="1.5">DEVIL MODE</text>
63
63
  <rect x="164" y="47" width="1" height="14" fill="#ef4444" opacity="0.4"/>
64
- <text x="172" y="59" font-size="11" font-weight="500" fill="#484f58" letter-spacing="0.5">v1.7.5</text>
64
+ <text x="172" y="59" font-size="11" font-weight="500" fill="#484f58" letter-spacing="0.5">v1.8.0</text>
65
65
 
66
66
  <!-- ============================================================ -->
67
67
  <!-- MAIN HEADLINE -->
@@ -208,23 +208,23 @@
208
208
  <!-- ============================================================ -->
209
209
  <!-- BOTTOM BAR -->
210
210
  <!-- ============================================================ -->
211
- <rect x="0" y="637" width="1200" height="38" fill="#07080f"/>
212
- <line x1="0" y1="637" x2="1200" y2="637" stroke="#1e1e2e" stroke-width="1"/>
211
+ <rect x="0" y="629" width="1200" height="38" fill="#07080f"/>
212
+ <line x1="0" y1="629" x2="1200" y2="629" stroke="#1e1e2e" stroke-width="1"/>
213
213
 
214
214
  <!-- Left: npx install command -->
215
- <text x="56" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#ef4444" font-weight="600">npx kodelyth-ecc</text>
215
+ <text x="56" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#ef4444" font-weight="600">npx kodelyth-ecc</text>
216
216
 
217
217
  <!-- Dot separator -->
218
- <text x="206" y="661" font-size="12" fill="#2d3340">&#xB7;</text>
218
+ <text x="206" y="653" font-size="12" fill="#2d3340">&#xB7;</text>
219
219
 
220
220
  <!-- GitHub URL -->
221
- <text x="222" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">github.com/sifxprime/kodelyth-ecc</text>
221
+ <text x="222" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">github.com/sifxprime/kodelyth-ecc</text>
222
222
 
223
223
  <!-- Dot separator -->
224
- <text x="562" y="661" font-size="12" fill="#2d3340">&#xB7;</text>
224
+ <text x="562" y="653" font-size="12" fill="#2d3340">&#xB7;</text>
225
225
 
226
226
  <!-- MIT license -->
227
- <text x="578" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">MIT</text>
227
+ <text x="578" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">MIT</text>
228
228
 
229
229
  <!-- Ghost Depth Mark — brand stamp (scale 0.55×) -->
230
230
  <g transform="translate(1044, 282) scale(0.55)" opacity="0.16">
@@ -38,7 +38,7 @@
38
38
  <rect x="56" y="40" width="168" height="28" rx="4" fill="#120a28" stroke="#a78bfa" stroke-opacity="0.5" stroke-width="1"/>
39
39
  <text x="66" y="59" font-size="11" font-weight="700" fill="#a78bfa" letter-spacing="1.5">MCP SERVER</text>
40
40
  <rect x="168" y="47" width="1" height="14" fill="#a78bfa" opacity="0.4"/>
41
- <text x="176" y="59" font-size="11" font-weight="500" fill="#484f58">v1.7.5</text>
41
+ <text x="176" y="59" font-size="11" font-weight="500" fill="#484f58">v1.8.0</text>
42
42
 
43
43
  <!-- Headline -->
44
44
  <text x="56" y="126" font-size="52" font-weight="900" letter-spacing="-2" fill="#ffffff">One server.</text>
@@ -126,13 +126,13 @@
126
126
  <text x="980" y="582" font-size="10" fill="#484f58" letter-spacing="1">RESOURCES</text>
127
127
 
128
128
  <!-- Bottom bar -->
129
- <rect x="0" y="637" width="1200" height="38" fill="#07080f"/>
130
- <line x1="0" y1="637" x2="1200" y2="637" stroke="#1e1e2e" stroke-width="1"/>
131
- <text x="56" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#a78bfa" font-weight="600">npx kodelyth-ecc mcp</text>
132
- <text x="240" y="661" font-size="12" fill="#2d3340">&#xB7;</text>
133
- <text x="256" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">github.com/sifxprime/kodelyth-ecc</text>
134
- <text x="596" y="661" font-size="12" fill="#2d3340">&#xB7;</text>
135
- <text x="612" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">localhost only · zero telemetry</text>
129
+ <rect x="0" y="629" width="1200" height="38" fill="#07080f"/>
130
+ <line x1="0" y1="629" x2="1200" y2="629" stroke="#1e1e2e" stroke-width="1"/>
131
+ <text x="56" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#a78bfa" font-weight="600">npx kodelyth-ecc mcp</text>
132
+ <text x="240" y="653" font-size="12" fill="#2d3340">&#xB7;</text>
133
+ <text x="256" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">github.com/sifxprime/kodelyth-ecc</text>
134
+ <text x="596" y="653" font-size="12" fill="#2d3340">&#xB7;</text>
135
+ <text x="612" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">localhost only · zero telemetry</text>
136
136
 
137
137
  <!-- Ghost Depth Mark — brand stamp (scale 0.55×) -->
138
138
  <g transform="translate(1044, 282) scale(0.55)" opacity="0.16">
@@ -40,7 +40,7 @@
40
40
  <rect x="56" y="40" width="200" height="28" rx="4" fill="#1a1200" stroke="#f59e0b" stroke-opacity="0.5" stroke-width="1"/>
41
41
  <text x="66" y="59" font-size="11" font-weight="700" fill="#f59e0b" letter-spacing="1.5">PARALLEL AGENTS</text>
42
42
  <rect x="198" y="47" width="1" height="14" fill="#f59e0b" opacity="0.4"/>
43
- <text x="206" y="59" font-size="11" font-weight="500" fill="#484f58">v1.7.5</text>
43
+ <text x="206" y="59" font-size="11" font-weight="500" fill="#484f58">v1.8.0</text>
44
44
 
45
45
  <!-- Headline -->
46
46
  <text x="56" y="126" font-size="52" font-weight="900" letter-spacing="-2" fill="#ffffff">4 specialists, 15 minutes.</text>
@@ -140,13 +140,13 @@
140
140
  <text x="978" y="554" font-size="11" fill="#484f58">api-guardian</text>
141
141
 
142
142
  <!-- Bottom bar -->
143
- <rect x="0" y="637" width="1200" height="38" fill="#07080f"/>
144
- <line x1="0" y1="637" x2="1200" y2="637" stroke="#1e1e2e" stroke-width="1"/>
145
- <text x="56" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#f59e0b" font-weight="600">npx kodelyth-ecc</text>
146
- <text x="206" y="661" font-size="12" fill="#2d3340">&#xB7;</text>
147
- <text x="222" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">github.com/sifxprime/kodelyth-ecc</text>
148
- <text x="562" y="661" font-size="12" fill="#2d3340">&#xB7;</text>
149
- <text x="578" y="661" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">MIT · free forever</text>
143
+ <rect x="0" y="629" width="1200" height="38" fill="#07080f"/>
144
+ <line x1="0" y1="629" x2="1200" y2="629" stroke="#1e1e2e" stroke-width="1"/>
145
+ <text x="56" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#f59e0b" font-weight="600">npx kodelyth-ecc</text>
146
+ <text x="206" y="653" font-size="12" fill="#2d3340">&#xB7;</text>
147
+ <text x="222" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">github.com/sifxprime/kodelyth-ecc</text>
148
+ <text x="562" y="653" font-size="12" fill="#2d3340">&#xB7;</text>
149
+ <text x="578" y="653" font-size="12" font-family="'Consolas', 'SF Mono', monospace" fill="#484f58">MIT · free forever</text>
150
150
 
151
151
  <!-- Ghost Depth Mark — brand stamp (scale 0.55×) -->
152
152
  <g transform="translate(1044, 282) scale(0.55)" opacity="0.16">
@@ -46,7 +46,7 @@
46
46
 
47
47
  <!-- Version badge -->
48
48
  <rect x="80" y="38" width="76" height="24" rx="12" fill="#a78bfa" fill-opacity="0.15" stroke="#a78bfa" stroke-opacity="0.5" stroke-width="1"/>
49
- <text x="118" y="54" font-size="11" fill="#a78bfa" text-anchor="middle" font-weight="700" letter-spacing="0.5">v1.7.5</text>
49
+ <text x="118" y="54" font-size="11" fill="#a78bfa" text-anchor="middle" font-weight="700" letter-spacing="0.5">v1.8.0</text>
50
50
 
51
51
  <!-- Main headline -->
52
52
  <text x="80" y="128" font-size="58" font-weight="900" letter-spacing="-2.5" fill="#ffffff">Kodelyth ECC</text>
@@ -121,8 +121,8 @@
121
121
  <text x="342" y="555" font-size="11" fill="#484f58" text-anchor="middle">13 install targets</text>
122
122
 
123
123
  <rect x="440" y="516" width="164" height="48" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/>
124
- <text x="522" y="537" font-size="13" fill="#ffffff" text-anchor="middle" font-weight="700">336 Tests</text>
125
- <text x="522" y="555" font-size="11" fill="#484f58" text-anchor="middle">24 test files · all passing</text>
124
+ <text x="522" y="537" font-size="13" fill="#ffffff" text-anchor="middle" font-weight="700">373 Tests</text>
125
+ <text x="522" y="555" font-size="11" fill="#484f58" text-anchor="middle">25 test files · all passing</text>
126
126
 
127
127
  <rect x="620" y="516" width="164" height="48" rx="8" fill="#161b22" stroke="#30363d" stroke-width="1"/>
128
128
  <text x="702" y="537" font-size="13" fill="#ffffff" text-anchor="middle" font-weight="700">Self-Learning</text>
@@ -3,13 +3,19 @@
3
3
  <!-- Background -->
4
4
  <rect width="1200" height="630" fill="#0a0a0a"/>
5
5
 
6
- <!-- Subtle vertical separator -->
7
- <line x1="196" y1="175" x2="196" y2="455"
8
- stroke="#ffffff" stroke-width="1" opacity="0.10"/>
6
+ <!-- Amber bottom accent bar -->
7
+ <rect x="0" y="626" width="1200" height="4" fill="#f59e0b" opacity="0.35"/>
9
8
 
10
- <!-- Ghost Depth Mark scale 0.85 (170px tall), vertically centered -->
11
- <!-- translate(82, 230): solid top (82,230) → apex (157,315) → bottom (82,400) -->
12
- <g transform="translate(82, 230) scale(0.85)">
9
+ <!-- Right-panel dot grid texture -->
10
+ <defs>
11
+ <pattern id="dots" width="28" height="28" patternUnits="userSpaceOnUse">
12
+ <circle cx="14" cy="14" r="0.8" fill="#ffffff" opacity="0.07"/>
13
+ </pattern>
14
+ </defs>
15
+ <rect x="504" y="0" width="696" height="626" fill="url(#dots)"/>
16
+
17
+ <!-- Ghost Depth Mark — scale 1.0 (200px tall), vertically centered -->
18
+ <g transform="translate(82, 210) scale(1.0)">
13
19
  <polyline points="-44,4 12,100 -44,196"
14
20
  stroke="#ffffff" stroke-width="10" opacity="0.22"
15
21
  stroke-linecap="round" stroke-linejoin="round"
@@ -20,46 +26,126 @@
20
26
  fill="none"/>
21
27
  </g>
22
28
 
23
- <!-- Version pill -->
24
- <rect x="60" y="434" width="84" height="24" rx="12"
29
+ <!-- v1.8.0 pill — below mark -->
30
+ <rect x="60" y="432" width="84" height="24" rx="12"
25
31
  fill="none" stroke="#ffffff" stroke-width="1" opacity="0.20"/>
26
- <text x="102" y="451"
32
+ <text x="102" y="449"
27
33
  font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
28
34
  font-size="12" font-weight="500" text-anchor="middle"
29
- fill="#ffffff" opacity="0.35">v1.7.5</text>
35
+ fill="#ffffff" opacity="0.35">v1.8.0</text>
30
36
 
31
37
  <!-- Wordmark -->
32
- <text x="224" y="282"
38
+ <text x="206" y="272"
33
39
  font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
34
- font-size="78" font-weight="700" letter-spacing="5"
40
+ font-size="52" font-weight="700" letter-spacing="2"
35
41
  fill="#ffffff">KODELYTH</text>
36
42
 
43
+ <!-- ECC product label — amber -->
44
+ <text x="210" y="314"
45
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
46
+ font-size="26" font-weight="600" letter-spacing="10"
47
+ fill="#f59e0b">ECC</text>
48
+
49
+ <!-- ECC underline accent -->
50
+ <line x1="210" y1="323" x2="300" y2="323"
51
+ stroke="#f59e0b" stroke-width="1" opacity="0.40"/>
52
+
37
53
  <!-- Tagline -->
38
- <text x="226" y="338"
54
+ <text x="210" y="356"
39
55
  font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
40
- font-size="30" font-weight="400"
41
- fill="#ffffff" opacity="0.70">Build everything.</text>
56
+ font-size="15" font-weight="400"
57
+ fill="#ffffff" opacity="0.50">Production-grade AI coding toolkit</text>
42
58
 
43
- <!-- Sub-line -->
44
- <text x="226" y="380"
59
+ <!-- Micro stats -->
60
+ <text x="210" y="383"
61
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
62
+ font-size="12" font-weight="400"
63
+ fill="#ffffff" opacity="0.28">70 agents · 194 skills · 97 commands</text>
64
+ <text x="210" y="399"
45
65
  font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
46
- font-size="19" font-weight="400"
47
- fill="#ffffff" opacity="0.42">AI coding toolkit for every platform</text>
66
+ font-size="12" font-weight="400"
67
+ fill="#ffffff" opacity="0.28">11 platforms · 13 install targets</text>
48
68
 
49
- <!-- Stats -->
50
- <text x="226" y="416"
69
+ <!-- Domain -->
70
+ <text x="210" y="448"
51
71
  font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
52
- font-size="17" font-weight="400"
53
- fill="#ffffff" opacity="0.32">70 agents · 194 skills · 11 platforms</text>
72
+ font-size="14" font-weight="500" letter-spacing="1"
73
+ fill="#f59e0b" opacity="0.65">kodelyth.com</text>
74
+
75
+ <!-- Vertical separator -->
76
+ <line x1="494" y1="54" x2="494" y2="574"
77
+ stroke="#ffffff" stroke-width="1" opacity="0.08"/>
54
78
 
55
- <!-- Divider -->
56
- <line x1="226" y1="440" x2="1080" y2="440"
57
- stroke="#ffffff" stroke-width="1" opacity="0.10"/>
79
+ <!-- ========== RIGHT PANEL — 2x2 STAT CARDS ========== -->
80
+
81
+ <!-- CARD: 70 AGENTS (top-left) -->
82
+ <rect x="514" y="62" width="302" height="208" rx="8"
83
+ fill="#ffffff" fill-opacity="0.035"
84
+ stroke="#ffffff" stroke-width="1" stroke-opacity="0.08"/>
85
+ <!-- amber top accent bar -->
86
+ <rect x="514" y="62" width="302" height="4" rx="2" fill="#f59e0b" opacity="0.70"/>
87
+ <text x="665" y="172"
88
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
89
+ font-size="76" font-weight="700" text-anchor="middle"
90
+ fill="#ffffff">70</text>
91
+ <text x="665" y="250"
92
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
93
+ font-size="12" font-weight="600" text-anchor="middle" letter-spacing="3"
94
+ fill="#ffffff" opacity="0.38">AGENTS</text>
95
+
96
+ <!-- CARD: 194 SKILLS (top-right) — amber highlighted -->
97
+ <rect x="836" y="62" width="302" height="208" rx="8"
98
+ fill="#f59e0b" fill-opacity="0.07"
99
+ stroke="#f59e0b" stroke-width="1" stroke-opacity="0.25"/>
100
+ <text x="987" y="172"
101
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
102
+ font-size="76" font-weight="700" text-anchor="middle"
103
+ fill="#f59e0b">194</text>
104
+ <text x="987" y="250"
105
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
106
+ font-size="12" font-weight="600" text-anchor="middle" letter-spacing="3"
107
+ fill="#f59e0b" opacity="0.65">SKILLS</text>
108
+
109
+ <!-- CARD: 97 COMMANDS (bottom-left) -->
110
+ <rect x="514" y="290" width="302" height="178" rx="8"
111
+ fill="#ffffff" fill-opacity="0.035"
112
+ stroke="#ffffff" stroke-width="1" stroke-opacity="0.08"/>
113
+ <text x="665" y="386"
114
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
115
+ font-size="68" font-weight="700" text-anchor="middle"
116
+ fill="#ffffff">97</text>
117
+ <text x="665" y="450"
118
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
119
+ font-size="12" font-weight="600" text-anchor="middle" letter-spacing="3"
120
+ fill="#ffffff" opacity="0.38">COMMANDS</text>
121
+
122
+ <!-- CARD: 22+ HOOKS (bottom-right) -->
123
+ <rect x="836" y="290" width="302" height="178" rx="8"
124
+ fill="#ffffff" fill-opacity="0.035"
125
+ stroke="#ffffff" stroke-width="1" stroke-opacity="0.08"/>
126
+ <text x="987" y="386"
127
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
128
+ font-size="68" font-weight="700" text-anchor="middle"
129
+ fill="#ffffff">22+</text>
130
+ <text x="987" y="450"
131
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
132
+ font-size="12" font-weight="600" text-anchor="middle" letter-spacing="3"
133
+ fill="#ffffff" opacity="0.38">HOOKS</text>
134
+
135
+ <!-- Platform row separator -->
136
+ <line x1="514" y1="490" x2="1138" y2="490"
137
+ stroke="#ffffff" stroke-width="1" opacity="0.07"/>
138
+
139
+ <!-- Platform names — line 1 -->
140
+ <text x="826" y="514"
141
+ font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
142
+ font-size="11" font-weight="400" text-anchor="middle" letter-spacing="0.5"
143
+ fill="#ffffff" opacity="0.28">Claude Code · Windsurf · Cursor · Codex CLI · Antigravity · OpenCode</text>
58
144
 
59
- <!-- Domainprominent -->
60
- <text x="226" y="475"
145
+ <!-- Platform names line 2 -->
146
+ <text x="826" y="533"
61
147
  font-family="'Segoe UI', system-ui, -apple-system, sans-serif"
62
- font-size="22" font-weight="600" letter-spacing="1"
63
- fill="#ffffff" opacity="0.55">kodelyth.com</text>
148
+ font-size="11" font-weight="400" text-anchor="middle" letter-spacing="0.5"
149
+ fill="#ffffff" opacity="0.28">Cline · Aider · Kimi · Roo Code · Gemini CLI · 11 platforms · 13 install targets</text>
64
150
 
65
151
  </svg>
@@ -38,7 +38,7 @@
38
38
  <!-- LEFT — Brand block -->
39
39
  <!-- Version badge -->
40
40
  <rect x="32" y="22" width="72" height="20" rx="10" fill="#a78bfa" fill-opacity="0.15" stroke="#a78bfa" stroke-opacity="0.4" stroke-width="1"/>
41
- <text x="68" y="36" font-size="9" fill="#a78bfa" text-anchor="middle" font-weight="700" letter-spacing="0.5">v1.7.5</text>
41
+ <text x="68" y="36" font-size="9" fill="#a78bfa" text-anchor="middle" font-weight="700" letter-spacing="0.5">v1.8.0</text>
42
42
 
43
43
  <!-- Title -->
44
44
  <text x="32" y="78" font-size="36" font-weight="900" letter-spacing="-1.5" fill="#ffffff">Kodelyth</text>
@@ -74,12 +74,12 @@
74
74
  <circle cx="344" cy="31" r="5" fill="#ff5f57"/>
75
75
  <circle cx="360" cy="31" r="5" fill="#febc2e"/>
76
76
  <circle cx="376" cy="31" r="5" fill="#28c840"/>
77
- <text x="612" y="35" font-size="11" fill="#484f58" text-anchor="middle">kodelyth-ecc v1.7.5</text>
77
+ <text x="612" y="35" font-size="11" fill="#484f58" text-anchor="middle">kodelyth-ecc v1.8.0</text>
78
78
 
79
79
  <text x="348" y="66" font-family="'Courier New', Courier, monospace" font-size="11" fill="#10b981">$</text>
80
80
  <text x="360" y="66" font-family="'Courier New', Courier, monospace" font-size="11" fill="#e6edf3"> npx kodelyth-ecc</text>
81
81
 
82
- <text x="348" y="84" font-family="'Courier New', Courier, monospace" font-size="11" fill="#484f58">Installing Kodelyth ECC v1.7.5...</text>
82
+ <text x="348" y="84" font-family="'Courier New', Courier, monospace" font-size="11" fill="#484f58">Installing Kodelyth ECC v1.8.0...</text>
83
83
 
84
84
  <text x="348" y="108" font-family="'Courier New', Courier, monospace" font-size="11" fill="#e6edf3"> Agents (70) </text>
85
85
  <text x="494" y="108" font-family="'Courier New', Courier, monospace" font-size="11" fill="#484f58">→ ~/.claude/agents/</text>
@@ -97,6 +97,6 @@
97
97
  <text x="494" y="180" font-family="'Courier New', Courier, monospace" font-size="11" fill="#484f58">→ ~/.kodelyth/memory/</text>
98
98
 
99
99
  <rect x="348" y="196" width="500" height="36" rx="6" fill="#0d2b1d" stroke="#059669" stroke-opacity="0.3" stroke-width="1"/>
100
- <text x="368" y="212" font-size="9" font-weight="700" fill="#10b981" letter-spacing="1">v1.7.5 — SEMANTIC INTENT ROUTING</text>
100
+ <text x="368" y="212" font-size="9" font-weight="700" fill="#10b981" letter-spacing="1">v1.8.0 — SEMANTIC INTENT ROUTING</text>
101
101
  <text x="368" y="226" font-size="10" fill="#6b7280">Paste code or a stack trace — AI routes you automatically, no command needed</text>
102
102
  </svg>
@@ -13,7 +13,7 @@
13
13
 
14
14
  <!-- Label -->
15
15
  <rect x="32" y="20" width="138" height="22" rx="11" fill="#38bdf8" fill-opacity="0.12" stroke="#38bdf8" stroke-opacity="0.4" stroke-width="1"/>
16
- <text x="101" y="35" font-size="10" fill="#38bdf8" text-anchor="middle" font-weight="700" letter-spacing="1">MCP SERVER v1.7.5</text>
16
+ <text x="101" y="35" font-size="10" fill="#38bdf8" text-anchor="middle" font-weight="700" letter-spacing="1">MCP SERVER v1.8.0</text>
17
17
 
18
18
  <text x="32" y="70" font-size="22" font-weight="800" fill="#ffffff">Universal adapter — any agent framework speaks ECC</text>
19
19
  <text x="32" y="92" font-size="12" fill="#6e7681">16 tools · 6 prompts · 365 resources · stdio JSON-RPC · zero telemetry</text>
@@ -1,5 +1,5 @@
1
1
  # Kodelyth ECC — Twitter / X Hype Content
2
- # v1.7.5 · github.com/sifxprime/kodelyth-ecc
2
+ # v1.8.0 · github.com/sifxprime/kodelyth-ecc
3
3
 
4
4
  ---
5
5
 
@@ -454,7 +454,7 @@ The numbers:
454
454
  22+ automation hooks
455
455
  14 always-on rules
456
456
  11 platforms, 13 install targets
457
- 336 passing tests
457
+ 373 passing tests
458
458
 
459
459
  One install. npx kodelyth-ecc
460
460
 
@@ -594,7 +594,7 @@ npx kodelyth-ecc — free, local, no cloud.
594
594
  97 slash commands.
595
595
  22+ automation hooks.
596
596
  11 platforms.
597
- 336 passing tests.
597
+ 373 passing tests.
598
598
  0 cloud.
599
599
 
600
600
  One install: npx kodelyth-ecc
@@ -69,7 +69,7 @@
69
69
  <rect x="480" y="280" width="360" height="120" rx="8" fill="#0d2b1d" stroke="#059669" stroke-opacity="0.4" stroke-width="1"/>
70
70
  <rect x="480" y="280" width="4" height="120" rx="2" fill="url(#mem)"/>
71
71
  <rect x="646" y="286" width="78" height="18" rx="9" fill="#059669" fill-opacity="0.25" stroke="#059669" stroke-opacity="0.5" stroke-width="1"/>
72
- <text x="685" y="299" font-size="9" fill="#10b981" text-anchor="middle" font-weight="700">v1.7.5</text>
72
+ <text x="685" y="299" font-size="9" fill="#10b981" text-anchor="middle" font-weight="700">v1.8.0</text>
73
73
  <text x="500" y="306" font-size="13" font-weight="700" fill="#ffffff">image-architect</text>
74
74
  <text x="500" y="325" font-size="12" fill="#8b949e">"my site looks plain / boring"</text>
75
75
  <text x="500" y="341" font-size="12" fill="#8b949e">"I need an OG image / social card"</text>
@@ -103,7 +103,7 @@
103
103
  <text x="920" y="424" font-size="32" font-weight="800" fill="#ffffff" text-anchor="middle">12</text>
104
104
  <text x="920" y="446" font-size="10" fill="#484f58" text-anchor="middle" letter-spacing="2">PLATFORMS</text>
105
105
  <line x1="860" y1="464" x2="980" y2="464" stroke="#21262d" stroke-width="1"/>
106
- <text x="920" y="496" font-size="20" font-weight="800" fill="#ffffff" text-anchor="middle">v1.7.5</text>
106
+ <text x="920" y="496" font-size="20" font-weight="800" fill="#ffffff" text-anchor="middle">v1.8.0</text>
107
107
  <text x="920" y="516" font-size="10" fill="#484f58" text-anchor="middle" letter-spacing="2">LATEST</text>
108
108
 
109
109
  <!-- Ghost Depth Mark — brand stamp (scale 0.55×) -->
@@ -51,11 +51,11 @@
51
51
  <text x="800" y="446" font-size="14" fill="#8b949e">Every session → better context</text>
52
52
  <text x="800" y="476" font-size="12" fill="#484f58">Month 1: knows your style.</text>
53
53
  <text x="800" y="494" font-size="12" fill="#484f58">Month 3: works like it's been here years.</text>
54
- <text x="800" y="528" font-size="11" fill="#30363d">Compound learning — v1.7.5</text>
54
+ <text x="800" y="528" font-size="11" fill="#30363d">Compound learning — v1.8.0</text>
55
55
 
56
56
  <!-- Footer CTA -->
57
57
  <text x="80" y="606" font-size="20" fill="#484f58">$ npx kodelyth-ecc</text>
58
- <text x="1120" y="606" font-size="16" fill="#484f58" text-anchor="end">v1.7.5 · github.com/sifxprime/kodelyth-ecc</text>
58
+ <text x="1120" y="606" font-size="16" fill="#484f58" text-anchor="end">v1.8.0 · github.com/sifxprime/kodelyth-ecc</text>
59
59
 
60
60
  <!-- Ghost Depth Mark — brand stamp (scale 0.55×) -->
61
61
  <g transform="translate(1044, 282) scale(0.55)" opacity="0.16">
@@ -30,25 +30,25 @@
30
30
  <rect x="80" y="252" width="3" height="68" rx="1" fill="url(#mem)"/>
31
31
  <text x="96" y="276" font-size="11" font-weight="700" fill="#10b981" letter-spacing="1">SESSION START — read-lessons.js</text>
32
32
  <text x="96" y="296" font-size="13" fill="#8b949e">Reads tasks/lessons.md → injects hard rules + project DNA</text>
33
- <text x="96" y="311" font-size="11" fill="#484f58">before your first message · fires first · v1.7.5</text>
33
+ <text x="96" y="311" font-size="11" fill="#484f58">before your first message · fires first · v1.8.0</text>
34
34
 
35
35
  <rect x="80" y="336" width="490" height="68" rx="8" fill="#0d1a0d" stroke="#059669" stroke-opacity="0.3" stroke-width="1"/>
36
36
  <rect x="80" y="336" width="3" height="68" rx="1" fill="url(#mem)"/>
37
37
  <text x="96" y="360" font-size="11" font-weight="700" fill="#10b981" letter-spacing="1">STOP — capture-correction.js</text>
38
38
  <text x="96" y="380" font-size="13" fill="#8b949e">Scans session JSONL for corrections → writes to lessons.md</text>
39
- <text x="96" y="395" font-size="11" fill="#484f58">12 signal patterns · async · zero latency · v1.7.5</text>
39
+ <text x="96" y="395" font-size="11" fill="#484f58">12 signal patterns · async · zero latency · v1.8.0</text>
40
40
 
41
41
  <rect x="80" y="420" width="490" height="68" rx="8" fill="#161b22" stroke="#21262d" stroke-width="1"/>
42
42
  <rect x="80" y="420" width="3" height="68" rx="1" fill="#a78bfa"/>
43
43
  <text x="96" y="444" font-size="11" font-weight="700" fill="#a78bfa" letter-spacing="1">SESSION START — memory inject</text>
44
44
  <text x="96" y="464" font-size="13" fill="#8b949e">BM25 recall from ~/.kodelyth/memory/ → past solutions</text>
45
- <text x="96" y="479" font-size="11" fill="#484f58">cache-friendly prefix · auto-fires · v1.7.5</text>
45
+ <text x="96" y="479" font-size="11" fill="#484f58">cache-friendly prefix · auto-fires · v1.8.0</text>
46
46
 
47
47
  <rect x="80" y="504" width="490" height="68" rx="8" fill="#161b22" stroke="#21262d" stroke-width="1"/>
48
48
  <rect x="80" y="504" width="3" height="68" rx="1" fill="#a78bfa"/>
49
49
  <text x="96" y="528" font-size="11" font-weight="700" fill="#a78bfa" letter-spacing="1">USER PROMPT — auto chat recall</text>
50
50
  <text x="96" y="548" font-size="13" fill="#8b949e">Watches every prompt → injects relevant memories before AI responds</text>
51
- <text x="96" y="563" font-size="11" fill="#484f58">per-session dedup · skips trivial prompts · v1.7.5</text>
51
+ <text x="96" y="563" font-size="11" fill="#484f58">per-session dedup · skips trivial prompts · v1.8.0</text>
52
52
 
53
53
  <!-- Right column — quality hooks -->
54
54
  <rect x="606" y="252" width="514" height="68" rx="8" fill="#161b22" stroke="#21262d" stroke-width="1"/>
@@ -78,7 +78,7 @@
78
78
  <!-- Footer -->
79
79
  <text x="80" y="618" font-size="16" fill="#484f58">All hooks fire automatically after</text>
80
80
  <text x="340" y="618" font-size="16" fill="#10b981" font-weight="600"> npx kodelyth-ecc</text>
81
- <text x="1120" y="618" font-size="14" fill="#484f58" text-anchor="end">v1.7.5</text>
81
+ <text x="1120" y="618" font-size="14" fill="#484f58" text-anchor="end">v1.8.0</text>
82
82
 
83
83
  <!-- Ghost Depth Mark — brand stamp (scale 0.55×) -->
84
84
  <g transform="translate(1044, 282) scale(0.55)" opacity="0.16">