kodelyth-ecc 2.4.1 → 2.4.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 +39 -0
- package/VERSION +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,45 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Kodelyth ECC are documented here.
|
|
4
4
|
|
|
5
|
+
## v2.4.2 — SEO-massive documentation refresh (July 2026)
|
|
6
|
+
|
|
7
|
+
Full documentation rewrite for website-ready SEO. Every doc now ships with YAML frontmatter (title, description, keywords, Open Graph, Twitter card, canonical URL, last_updated, version, category). Six new feature docs cover subsystems shipped since v2.0 that were undocumented until now.
|
|
8
|
+
|
|
9
|
+
### Added — 8 new docs
|
|
10
|
+
|
|
11
|
+
- **`docs/index.md`** — SEO-optimized hub page with keyword-rich intro, platform support table, quick reference
|
|
12
|
+
- **`docs/getting-started.md`** — one-command install, verify, first agent invocation, CLI commands, filesystem layout
|
|
13
|
+
- **`docs/rtk.md`** — RTK integration deep-dive (auto-install, CLI, per-target flags, dashboard, live proof numbers)
|
|
14
|
+
- **`docs/terse-mode.md`** — output-compression skill, 4-level dial, memory-file compressor, byte-preservation rules, ledger, Caveman attribution
|
|
15
|
+
- **`docs/codebase-graph.md`** — 158-language AST intelligence via DeusData/codebase-memory-mcp, query examples, edge types, performance table
|
|
16
|
+
- **`docs/interactive-cli.md`** — arrow-key menu, update check details, background daemon, TTY-detection rules, env-var reference
|
|
17
|
+
- **`docs/uninstall.md`** — full cleanup procedure, dry-run mode, what gets removed vs preserved, programmatic API
|
|
18
|
+
- **`docs/intent-routing.md`** — 10-tier signal system + 8 new routing dimensions, output-format examples, live routing table
|
|
19
|
+
- **`docs/sitemap.md`** — complete documentation index for site builds
|
|
20
|
+
|
|
21
|
+
### Changed — SEO frontmatter on all 7 existing docs
|
|
22
|
+
|
|
23
|
+
Added YAML frontmatter with SEO metadata to:
|
|
24
|
+
|
|
25
|
+
- `docs/dashboard.md`
|
|
26
|
+
- `docs/evolve.md`
|
|
27
|
+
- `docs/mcp.md`
|
|
28
|
+
- `docs/mcp-clients.md`
|
|
29
|
+
- `docs/replay.md`
|
|
30
|
+
- `docs/supply-chain.md`
|
|
31
|
+
- `docs/swarm.md`
|
|
32
|
+
|
|
33
|
+
Every frontmatter block includes: `title`, `description`, `keywords[]`, `og_title`, `og_description`, `og_image`, `og_type`, `twitter_card`, `canonical`, `last_updated`, `version`, `category`. Format is SSG-agnostic — works with Astro, Next.js, Docusaurus, VitePress, Hugo without translation.
|
|
34
|
+
|
|
35
|
+
### SVGs
|
|
36
|
+
|
|
37
|
+
18 files version-bumped `v2.4.1 → v2.4.2`.
|
|
38
|
+
|
|
39
|
+
### Doc count
|
|
40
|
+
|
|
41
|
+
- Before: 7 docs, no frontmatter, 1,553 lines total, 4 empty subdirs
|
|
42
|
+
- After: 16 docs (9 new), full SEO frontmatter, ~2,500 lines, still 4 empty subdirs (reserved for future `api/`, `architecture/`, `config/`, `guides/` expansion)
|
|
43
|
+
|
|
5
44
|
## v2.4.1 — Intent routing v2 (July 2026)
|
|
6
45
|
|
|
7
46
|
Full design pass on `rules/common/agent-intent-routing.md` — the always-on rule that maps plain-language user intent to specialist agents. Deferred from 2.4.0.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kodelyth-ecc",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.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",
|