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 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.6
1
+ 2.4.7
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Incrementally fix build and type errors with minimal, safe changes
3
+ ---
4
+
1
5
  # Build and Fix
2
6
 
3
7
  Incrementally fix build and type errors with minimal, safe changes.
@@ -1,3 +1,8 @@
1
+ ---
2
+ description: Save a git checkpoint commit of the current working state
3
+ argument-hint: "[message]"
4
+ ---
5
+
1
6
  # Checkpoint Command
2
7
 
3
8
  Create or verify a checkpoint in your workflow.
@@ -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
@@ -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
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Audit and optimize the local agent harness for reliability, cost, and throughput
3
+ ---
4
+
1
5
  # Harness Audit Command
2
6
 
3
7
  Run a deterministic repository harness audit and return a prioritized scorecard.
package/commands/learn.md CHANGED
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Extract reusable patterns from this session and save them as learned skills
3
+ ---
4
+
1
5
  # /learn - Extract Reusable Patterns
2
6
 
3
7
  Analyze the current session and extract any patterns worth saving as skills.
@@ -1,3 +1,8 @@
1
+ ---
2
+ description: Start an autonomous agent loop with quality gates and recovery controls
3
+ argument-hint: "<task>"
4
+ ---
5
+
1
6
  # Loop Start Command
2
7
 
3
8
  Start a managed autonomous loop pattern with safety defaults.
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Show the status of running autonomous agent loops
3
+ ---
4
+
1
5
  # Loop Status Command
2
6
 
3
7
  Inspect active loop state, progress, and failure signals.
@@ -1,3 +1,8 @@
1
+ ---
2
+ description: Recommend the right model tier (trivial/standard/hard) for the current task
3
+ argument-hint: "<task>"
4
+ ---
5
+
1
6
  # Model Route Command
2
7
 
3
8
  Recommend the best model tier for the current task by complexity and budget.
@@ -1,3 +1,8 @@
1
+ ---
2
+ description: Fan out backend implementation across parallel specialist agents
3
+ argument-hint: "<task>"
4
+ ---
5
+
1
6
  # Backend - Backend-Focused Development
2
7
 
3
8
  Backend-focused workflow (Research → Ideation → Plan → Execute → Optimize → Review), Codex-led.
@@ -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.
@@ -1,3 +1,8 @@
1
+ ---
2
+ description: Fan out frontend implementation across parallel specialist agents
3
+ argument-hint: "<task>"
4
+ ---
5
+
1
6
  # Frontend - Frontend-Focused Development
2
7
 
3
8
  Frontend-focused workflow (Research → Ideation → Plan → Execute → Optimize → Review), Gemini-led.
@@ -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
@@ -1,3 +1,8 @@
1
+ ---
2
+ description: Manage long-running dev processes with pm2 (start, stop, logs, status)
3
+ argument-hint: "[action]"
4
+ ---
5
+
1
6
  # PM2 Init
2
7
 
3
8
  Auto-analyze project and generate PM2 service commands.
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Run the full quality gate — build, lint, types, tests, security scan
3
+ ---
4
+
1
5
  # Quality Gate Command
2
6
 
3
7
  Run the ECC quality pipeline on demand for a file or project scope.
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Remove dead code, duplicates, and tech debt with safe automated cleanup
3
+ ---
4
+
1
5
  # Refactor Clean
2
6
 
3
7
  Safely identify and remove dead code with test verification at every step.
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Analyze test coverage and identify the highest-value gaps to fill
3
+ ---
4
+
1
5
  # Test Coverage
2
6
 
3
7
  Analyze test coverage, identify gaps, and generate missing tests to reach 80%+ coverage.
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Regenerate codemaps and architecture docs from the current source
3
+ ---
4
+
1
5
  # Update Codemaps
2
6
 
3
7
  Analyze the codebase structure and generate token-lean architecture documentation.
@@ -1,3 +1,7 @@
1
+ ---
2
+ description: Update README and documentation to match the current code
3
+ ---
4
+
1
5
  # Update Documentation
2
6
 
3
7
  Sync documentation with the codebase, generating from source-of-truth files.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kodelyth-ecc",
3
- "version": "2.4.6",
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",