kodelyth-ecc 2.5.0 → 2.5.2
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 +36 -0
- package/README.md +7 -0
- package/VERSION +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,42 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Kodelyth ECC are documented here.
|
|
4
4
|
|
|
5
|
+
## v2.5.2 — Broken README image fix + brand polish (July 2026)
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **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.
|
|
10
|
+
- **Stale counts across social SVGs:** 194 → 196 skills, 373 → 388 tests (readme-hero, og-image, github-social-preview, fb-ad-main).
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `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.
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- SVG version badges v2.5.1 → v2.5.2; 8K PNGs re-rendered.
|
|
19
|
+
- 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).
|
|
20
|
+
|
|
21
|
+
## v2.5.1 — ECC product identity (July 2026)
|
|
22
|
+
|
|
23
|
+
Formalized ECC as the flagship product with its own visual identity — without changing the core Kodelyth `>` Ghost Depth mark.
|
|
24
|
+
|
|
25
|
+
### Added — `brand/`
|
|
26
|
+
|
|
27
|
+
- `ecc-icon.svg` + `ecc-icon-{512,192}.png` + `ecc-favicon.ico` — the app-icon badge (Kodelyth `>` mark in a rounded, blue-bordered square). Verified legible from 16px favicon to 512px.
|
|
28
|
+
- `ecc-lockup-{dark,light}.{svg,png}` — the ECC product lockup: mark + a small `KODELYTH` kicker + a bold `ECC` hero + the "Elite Code Crew · AI coding toolkit" tagline. Light + dark variants.
|
|
29
|
+
- `ecc-badge.{svg,png}` — square mark + ECC for npm / GitHub / social avatars.
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- README now leads with the ECC lockup (GitHub light/dark aware via `<picture>`), above the existing hero.
|
|
34
|
+
- The companion site ([ecc.kodelyth.com](https://ecc.kodelyth.com)) adopts the new favicon, apple-touch-icon, PWA icons, and lockups.
|
|
35
|
+
|
|
36
|
+
### Notes
|
|
37
|
+
|
|
38
|
+
- The core Kodelyth `>` mark is unchanged — this is a product sub-brand, not a rebrand (parent brand → flagship product, like Adobe → Photoshop).
|
|
39
|
+
- Nothing removed; all prior brand files remain.
|
|
40
|
+
|
|
5
41
|
## v2.5.0 — `kodelythecc doctor` live health check (July 2026)
|
|
6
42
|
|
|
7
43
|
A self-diagnostic that verifies every subsystem is **actually wired and working** — the direct answer to "is it real or dummy?"
|
package/README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
+
<picture>
|
|
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
|
+
</picture>
|
|
7
|
+
|
|
8
|
+
<br><br>
|
|
9
|
+
|
|
3
10
|
<img src="social/readme-hero.svg" alt="Kodelyth ECC — AI Agent Toolkit" width="900"/>
|
|
4
11
|
|
|
5
12
|
[](https://www.npmjs.com/package/kodelyth-ecc)
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.5.
|
|
1
|
+
2.5.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kodelyth-ecc",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.2",
|
|
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",
|