kodelyth-ecc 2.4.8 → 2.4.9
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 +28 -0
- package/README.md +8 -0
- package/VERSION +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Kodelyth ECC are documented here.
|
|
4
4
|
|
|
5
|
+
## v2.4.9 — Phase 4 audit + 6 new feature SVGs (July 2026)
|
|
6
|
+
|
|
7
|
+
Final audit round + the visual gap: the six headline 2.x features had **zero illustrations** in the README or website.
|
|
8
|
+
|
|
9
|
+
### Phase 4 audit — findings
|
|
10
|
+
|
|
11
|
+
- **End-to-end swept every advertised feature** with real invocations: all 9 CLI subcommands, 16 MCP tools, swarm (builds real 4-worker plans), replay (validates args), all 8 parallel commands present, 3 bundles valid. **No dummy features found** — the real bugs were all caught in Phases 1-3.
|
|
12
|
+
- **Adversarial agents assessed** (`secret-hunter`, `backdoor-hunter`, `supply-chain-auditor`): already built with real detection commands (backdoor-hunter has 36, supply-chain-auditor has 8 real jq/npm lockfile-audit sections). No dummy gap like security-reviewer had — honest result, left them alone.
|
|
13
|
+
|
|
14
|
+
### New — 6 feature SVGs (the visual gap)
|
|
15
|
+
|
|
16
|
+
Created on-brand 900×170 illustrations matching the existing `section-*.svg` design system, each with real data and a diagram:
|
|
17
|
+
|
|
18
|
+
- `section-rtk.svg` — input-savings pipeline (raw → RTK filter → compact, 5.1M/64% ledger)
|
|
19
|
+
- `section-terse.svg` — 4-level output-compression dial with before/after
|
|
20
|
+
- `section-codebase.svg` — AST graph nodes + query, 412k vs 3.4k token comparison
|
|
21
|
+
- `section-cli.svg` — interactive menu terminal + arrow keys + update check
|
|
22
|
+
- `section-token-savings.svg` — the three-layer stack combining to −55–65%
|
|
23
|
+
- `section-uninstall.svg` — clean-removal checklist + dry-run
|
|
24
|
+
|
|
25
|
+
All rendered to 8K PNG (37 exports total) and injected into the README's RTK / Terse / Codebase / Interactive-CLI sections.
|
|
26
|
+
|
|
27
|
+
### Verified
|
|
28
|
+
|
|
29
|
+
- 384 tests, 0 failures
|
|
30
|
+
- All 6 SVGs render clean at 8K, no text overflow, on-brand
|
|
31
|
+
- README references the 4 new section SVGs
|
|
32
|
+
|
|
5
33
|
## v2.4.8 — Phase 3: agent polish + token-savings skill (July 2026)
|
|
6
34
|
|
|
7
35
|
Phase 3 of the sequenced plan (audit → routing → skills/agents). Disciplined polish — fixed the one agent with a real actionable gap, added the one skill filling a real gap, and deliberately did **not** pad agents that are already complete.
|
package/README.md
CHANGED
|
@@ -430,6 +430,8 @@ Full reference: [`docs/dashboard.md`](docs/dashboard.md).
|
|
|
430
430
|
|
|
431
431
|
## RTK — Input Token Savings (60-90%)
|
|
432
432
|
|
|
433
|
+
<div align="center"><img src="social/section-rtk.svg" alt="RTK — Input Token Savings (60-90%)" width="900"/></div>
|
|
434
|
+
|
|
433
435
|
[RTK (Rust Token Killer)](https://github.com/rtk-ai/rtk) — Apache-2.0, single Rust binary — intercepts shell commands before they run and filters the output. Common commands like `git status`, `ls`, `cargo test`, `docker ps` return ~80% less text with zero information loss for the LLM.
|
|
434
436
|
|
|
435
437
|
ECC bundles RTK end-to-end:
|
|
@@ -462,6 +464,8 @@ total_saved: 5,107,394 ← 64.1% average reduction
|
|
|
462
464
|
|
|
463
465
|
## Terse Mode — Output Token Savings (40-70%)
|
|
464
466
|
|
|
467
|
+
<div align="center"><img src="social/section-terse.svg" alt="Terse Mode — Output Token Savings (40-70%)" width="900"/></div>
|
|
468
|
+
|
|
465
469
|
RTK compresses input. **Terse mode** compresses output. Together they stack — savings on both sides of every turn.
|
|
466
470
|
|
|
467
471
|
ECC's own implementation, inspired by [Caveman](https://github.com/JuliusBrussee/caveman) (MIT), independently written. Ships as a skill + two slash commands + a deterministic zero-dep memory-file compressor.
|
|
@@ -497,6 +501,8 @@ kodelythecc terse --help
|
|
|
497
501
|
|
|
498
502
|
## Codebase Graph — 158 Languages, Structural Queries
|
|
499
503
|
|
|
504
|
+
<div align="center"><img src="social/section-codebase.svg" alt="Codebase Graph — 158 Languages, Structural Queries" width="900"/></div>
|
|
505
|
+
|
|
500
506
|
Powered by [DeusData/codebase-memory-mcp](https://github.com/DeusData/codebase-memory-mcp) (MIT). AST-parsed knowledge graph via tree-sitter across **158 languages**, Hybrid LSP semantic type resolution for 11 major languages, cross-service HTTP/gRPC/GraphQL linking, 14 MCP tools for structural queries.
|
|
501
507
|
|
|
502
508
|
**Why this matters**: "Who calls `ProcessOrder`?" via file-by-file grep = ~412k tokens. Same question via the graph = ~3.4k tokens. That's a **99% reduction** on structural questions.
|
|
@@ -527,6 +533,8 @@ kodelythecc codebase --help
|
|
|
527
533
|
|
|
528
534
|
## Interactive CLI Menu
|
|
529
535
|
|
|
536
|
+
<div align="center"><img src="social/section-cli.svg" alt="Interactive CLI Menu" width="900"/></div>
|
|
537
|
+
|
|
530
538
|
Type `kodelythecc` alone in a real terminal → arrow-key menu opens.
|
|
531
539
|
|
|
532
540
|
```
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.9
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kodelyth-ecc",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.9",
|
|
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",
|