kodelyth-ecc 2.4.6 → 2.4.7
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 +26 -0
- package/VERSION +1 -1
- package/commands/build-fix.md +4 -0
- package/commands/checkpoint.md +5 -0
- package/commands/gan-build.md +5 -0
- package/commands/gan-design.md +5 -0
- package/commands/harness-audit.md +4 -0
- package/commands/learn.md +4 -0
- package/commands/loop-start.md +5 -0
- package/commands/loop-status.md +4 -0
- package/commands/model-route.md +5 -0
- package/commands/multi-backend.md +5 -0
- package/commands/multi-execute.md +5 -0
- package/commands/multi-frontend.md +5 -0
- package/commands/multi-plan.md +5 -0
- package/commands/multi-workflow.md +5 -0
- package/commands/pm2.md +5 -0
- package/commands/quality-gate.md +4 -0
- package/commands/refactor-clean.md +4 -0
- package/commands/test-coverage.md +4 -0
- package/commands/update-codemaps.md +4 -0
- package/commands/update-docs.md +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Kodelyth ECC are documented here.
|
|
4
4
|
|
|
5
|
+
## v2.4.7 — Command frontmatter + 8K asset regeneration (July 2026)
|
|
6
|
+
|
|
7
|
+
Final review pass across every subsystem, plus asset refresh.
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **20 slash commands had no YAML frontmatter** — so they showed up in the `/` menu with no description (part of the earlier "commands don't show properly" complaint). Added `description` + `argument-hint` to all of them: `build-fix`, `checkpoint`, `gan-build`, `gan-design`, `harness-audit`, `learn`, `loop-start`, `loop-status`, `model-route`, `multi-backend`, `multi-execute`, `multi-frontend`, `multi-plan`, `multi-workflow`, `pm2`, `quality-gate`, `refactor-clean`, `test-coverage`, `update-codemaps`, `update-docs`. All 99 commands now carry frontmatter.
|
|
12
|
+
|
|
13
|
+
### Assets
|
|
14
|
+
|
|
15
|
+
- **Regenerated all 31 social images at 8K** (7680px wide, aspect-preserved) into `social/exports/8k/` — e.g. `hype-mcp-server.png` is a true 7680×4320 8K UHD frame.
|
|
16
|
+
- **Removed the old 4K exports** (`social/exports/4k/`, 13 MB).
|
|
17
|
+
- **`brand/` left untouched** (7 SVGs + 5 PNGs) as requested.
|
|
18
|
+
- SVG version badges bumped to v2.4.7; PNGs re-rendered to match.
|
|
19
|
+
- 8K PNGs stay git-only — `.npmignore` already excludes `social/` and `*.png`, so the npm tarball stays lean.
|
|
20
|
+
|
|
21
|
+
### Review pass (all clean)
|
|
22
|
+
|
|
23
|
+
- 384 tests, 0 failures across 27 files
|
|
24
|
+
- Every JS file parses
|
|
25
|
+
- Versions consistent (package.json / VERSION / npm all 2.4.7)
|
|
26
|
+
- 70/70 agents valid frontmatter; all internal doc links resolve
|
|
27
|
+
- All 58 hook command paths in hooks.json resolve to real files
|
|
28
|
+
- All 13 MCP tools callable; 381 MCP resources readable; 12 dashboard endpoints serve real data
|
|
29
|
+
- manifest→verify roundtrip works
|
|
30
|
+
|
|
5
31
|
## v2.4.6 — Phase 2: measurable intent routing (38% → 100% top-1) (July 2026)
|
|
6
32
|
|
|
7
33
|
The `route_intent` MCP tool was thin token-overlap against agent descriptions — no way to know if it actually worked. Now it's **measured** and **10x better**.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.4.
|
|
1
|
+
2.4.7
|
package/commands/build-fix.md
CHANGED
package/commands/checkpoint.md
CHANGED
package/commands/gan-build.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: GAN harness — generator/evaluator build loop for autonomous feature implementation
|
|
3
|
+
argument-hint: "<spec>"
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
Parse the following from $ARGUMENTS:
|
|
2
7
|
1. `brief` — the user's one-line description of what to build
|
|
3
8
|
2. `--max-iterations N` — (optional, default 15) maximum generator-evaluator cycles
|
package/commands/gan-design.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: GAN harness — expand a one-line prompt into a full product spec
|
|
3
|
+
argument-hint: "<idea>"
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
Parse the following from $ARGUMENTS:
|
|
2
7
|
1. `brief` — the user's description of the design to create
|
|
3
8
|
2. `--max-iterations N` — (optional, default 10) maximum design-evaluate cycles
|
package/commands/learn.md
CHANGED
package/commands/loop-start.md
CHANGED
package/commands/loop-status.md
CHANGED
package/commands/model-route.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Execute a multi-agent plan across parallel workers
|
|
3
|
+
argument-hint: "<plan>"
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
# Execute - Multi-Model Collaborative Execution
|
|
2
7
|
|
|
3
8
|
Multi-model collaborative execution - Get prototype from plan → Claude refactors and implements → Multi-model audit and delivery.
|
package/commands/multi-plan.md
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Plan a task for parallel multi-agent execution
|
|
3
|
+
argument-hint: "<task>"
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
# Plan - Multi-Model Collaborative Planning
|
|
2
7
|
|
|
3
8
|
Multi-model collaborative planning - Context retrieval + Dual-model analysis → Generate step-by-step implementation plan.
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Orchestrate a multi-step workflow across parallel agents
|
|
3
|
+
argument-hint: "<workflow>"
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
# Workflow - Multi-Model Collaborative Development
|
|
2
7
|
|
|
3
8
|
Multi-model collaborative development workflow (Research → Ideation → Plan → Execute → Optimize → Review), with intelligent routing: Frontend → Gemini, Backend → Codex.
|
package/commands/pm2.md
CHANGED
package/commands/quality-gate.md
CHANGED
package/commands/update-docs.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kodelyth-ecc",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.7",
|
|
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",
|