kodelyth-ecc 2.5.1 → 2.5.3
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/CHANGELOG.md +29 -0
- package/README.md +2 -2
- package/VERSION +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Kodelyth ECC are documented here.
|
|
4
4
|
|
|
5
|
+
## v2.5.3 — Devil Mode + Memory cards for "How it works" (July 2026)
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- `social/card-devil.svg` — Devil Mode feature card: "8 agents that attack your code first", the 8-agent adversarial grid + `/devil-mode --all`. Red accent.
|
|
10
|
+
- `social/card-memory.svg` — Compound Memory card: "It remembers what worked last time", the BM25 recall flow (prompt → recalled fix → injected into context). Violet accent.
|
|
11
|
+
- Both wired into the site's "How it works" showcase — now 8 features (routing, RTK, Terse, codebase, MCP, CLI, devil mode, memory), all in the taller card format with summaries.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- SVG version badges v2.5.2 → v2.5.3; 8K PNGs re-rendered across the set.
|
|
16
|
+
- Fresh GitHub social preview render (196 skills, v2.5.3) at 8K + upload-ready 2×.
|
|
17
|
+
|
|
18
|
+
## v2.5.2 — Broken README image fix + brand polish (July 2026)
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- **README lockup was a broken image on GitHub and npm.** The header referenced `brand/ecc-lockup-*.png`, but `.gitignore` excludes `brand/**/*.png` (SVG-only policy) so the PNGs were never committed. Switched the README `<picture>` to the committed SVG lockups — renders on both.
|
|
23
|
+
- **Stale counts across social SVGs:** 194 → 196 skills, 373 → 388 tests (readme-hero, og-image, github-social-preview, fb-ad-main).
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- `social/faq-mastermind.svg` — a "one mastermind across every IDE + CLI" illustration: the ECC core radiating to Claude Code, Cursor, Windsurf, Codex, Antigravity, and Gemini plus a CLI terminal node. Fills the previously-empty FAQ right column on the site.
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- SVG version badges v2.5.1 → v2.5.2; 8K PNGs re-rendered.
|
|
32
|
+
- Site: taller feature cards (fixed cramped wide-banner proportions), header badge now matches the favicon (gradient + blue ring), FAQ is two-column with the mastermind illustration. Verified no horizontal overflow at 375px (mobile) or 1280px (desktop).
|
|
33
|
+
|
|
5
34
|
## v2.5.1 — ECC product identity (July 2026)
|
|
6
35
|
|
|
7
36
|
Formalized ECC as the flagship product with its own visual identity — without changing the core Kodelyth `>` Ghost Depth mark.
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
3
|
<picture>
|
|
4
|
-
<source media="(prefers-color-scheme: dark)" srcset="brand/ecc-lockup-dark.
|
|
5
|
-
<img src="brand/ecc-lockup-light.
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="brand/ecc-lockup-dark.svg">
|
|
5
|
+
<img src="brand/ecc-lockup-light.svg" alt="Kodelyth ECC — Elite Code Crew" width="440"/>
|
|
6
6
|
</picture>
|
|
7
7
|
|
|
8
8
|
<br><br>
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5.
|
|
1
|
+
2.5.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kodelyth-ecc",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.3",
|
|
4
4
|
"description": "Production-grade AI coding toolkit — 70 agents (incl. devil-mode adversarial crew), 194 skills, 97 commands, parallel multi-agent commands, semantic intent routing, self-learning memory, and a built-in MCP server (16 tools / 6 prompts / 377 resources) that bridges to Claude Desktop, LangGraph, AutoGen, CrewAI, and OpenAI Agents SDK. Works with Claude Code, Windsurf, Cursor, Codex, Antigravity, OpenCode, Cline, RooCode, Aider, Kimi, and Gemini CLI.",
|
|
5
5
|
"author": "Kodelyth <github.com/sifxprime>",
|
|
6
6
|
"license": "MIT",
|