kodelyth-ecc 1.5.2 → 1.5.4

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,78 @@
2
2
 
3
3
  All notable changes to Kodelyth ECC are documented here.
4
4
 
5
+ ## v1.5.3 — God-Tier Intent Routing Expansion (May 2026)
6
+
7
+ ### The Routing Overhaul
8
+
9
+ Intent routing was already powerful. Now it's semantic. The AI no longer pattern-matches against keyword lists — it reads intent behind words, reasons about emotion, and catches every natural-language description of a problem without the user knowing any command names.
10
+
11
+ ### What Changed
12
+
13
+ #### `rules/common/agent-intent-routing.md` — complete expansion
14
+
15
+ **Semantic reasoning preamble (new):**
16
+ - The AI is now explicitly instructed to reason about *intent behind words*, not keyword-match
17
+ - Code paste detection: user pastes a block of code with no text → auto-routes to `code-reviewer`
18
+ - Stack trace paste detection: user pastes an error log with no text → auto-routes to `debug-detective`
19
+ - Emotion as a routing signal: frustration, excitement, confusion, worry all trigger routing
20
+ - "The signal tables are examples, not exhaustive lists" — AI uses reasoning, not lookup tables
21
+
22
+ **Expanded signal coverage (2–3x more per agent):**
23
+
24
+ | Agent | Added signals |
25
+ |---|---|
26
+ | `debug-detective` | "nothing works", "driving me crazy", "acting weird", "stopped working", "broken again", naked stack trace paste |
27
+ | `code-reviewer` | "take a look at this", "eyes on this", "would you write it differently?", "before I merge", naked code paste |
28
+ | `kodelyth-advisor` | "can someone help me", "any advice", "am I doing this right?", "what would you do here?" |
29
+ | `ux-reviewer` | "the UI is confusing", "hard to use", "nobody can find the button", "users are confused" |
30
+ | `performance-optimizer` | "make this faster", "optimize this", "the API is slow", "reduce the load time" |
31
+ | `security-reviewer` | "is this safe", "any security issues", "I'm worried this might be insecure" |
32
+ | `migration-guide` | "this is deprecated", "moving to the new version", "old way is removed" |
33
+ | `doc-updater` | "nobody knows how this works", "there are no docs", "write documentation" |
34
+ | `refactor-cleaner` | "cruft", "old stuff hanging around", "vestigial code", "this is copy-pasted everywhere" |
35
+ | `chief-of-staff` | "draft an email", "reply to this", "how should I say this", "status update" |
36
+ | `seo-specialist` | "my page doesn't rank", "Google isn't indexing" |
37
+
38
+ **`/project-launch` — catches all new-build language:**
39
+ - "help me build a todo app" → caught
40
+ - "I have this idea for an app" → caught
41
+ - "I'm starting a new side project" → caught
42
+ - "I want to make a ..." → caught
43
+ - "new SaaS", "startup idea", "I want to launch" → caught
44
+ - Key rule: any non-trivial new build defaults to `/project-launch`
45
+
46
+ **`/team-review` — catches all broad review language:**
47
+ - "can you review my code?" → caught (key rule: narrow = language reviewer, broad = /team-review)
48
+ - "is this ready to ship?" → caught
49
+ - "about to go live" → caught
50
+ - "go through my code" → caught
51
+
52
+ **`image-architect` — catches implicit visual need:**
53
+ - "my site looks plain" → caught
54
+ - "make it look good" → caught
55
+ - "the page looks bare" → caught
56
+ - "give it some flair" → caught
57
+ - "I need something for the homepage" → caught
58
+
59
+ **`/lessons` — catches habit encoding:**
60
+ - "from now on always X" → caught
61
+ - "make it a rule that" → caught
62
+ - "I want you to always" → caught
63
+ - Proactive session-start offer: if `tasks/lessons.md` exists → "Found project lessons. Load them now?"
64
+
65
+ **Updated routing examples table:**
66
+ - 36 examples (up from 22)
67
+ - Natural human phrases: "help me build a todo app", "my site looks plain", "can you review my code?", "from now on never use var", naked code/trace paste
68
+
69
+ ### Why This Matters
70
+
71
+ Before v1.5.3: routing worked if you said the right words. "Generate an image" → routed. "My site looks boring" → not routed.
72
+
73
+ After v1.5.3: routing works from the first word of any natural description. The AI reads intent, not phrases. You never need to know a command name. You never need to know an agent exists.
74
+
75
+ ---
76
+
5
77
  ## v1.5.2 — Parallel Agents + Cross-Platform Lessons + AI Image Generation (May 2026)
6
78
 
7
79
  ### The Parallel Era
package/CLAUDE.md CHANGED
@@ -6,11 +6,11 @@ Guidance for Claude Code when working with this repository.
6
6
 
7
7
  **Kodelyth ECC** — a production-grade AI coding toolkit:
8
8
 
9
- - **61 specialist agents** — debug-detective, incident-commander, load-tester, kodelyth-memory, security-reviewer, etc.
9
+ - **62 specialist agents** — debug-detective, incident-commander, load-tester, image-architect, kodelyth-memory, security-reviewer, etc.
10
10
  - **188 skills** — domain knowledge, patterns, testing, security, intent routing, local memory
11
- - **80 commands** — slash workflows (`/tdd`, `/plan`, `/code-review`, `/memory`, ...)
12
- - **18+ hooks** — automated quality gates, session memory, memory inject + capture
13
- - **16 rules** — always-on coding standards + intent routing + memory protocol
11
+ - **80 commands** — slash workflows (`/tdd`, `/plan`, `/code-review`, `/memory`, `/project-launch`, `/team-review`, ...)
12
+ - **20+ hooks** — automated quality gates, session memory, memory inject + capture, correction encoding
13
+ - **17 rules** — always-on coding standards + semantic intent routing + memory protocol
14
14
 
15
15
  Works with Claude Code, Windsurf, Cursor, Codex CLI, Antigravity, and OpenCode.
16
16
 
package/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  ![Antigravity](https://img.shields.io/badge/Antigravity-Ready-00ADD8)
9
9
  ![Cursor](https://img.shields.io/badge/Cursor-Ready-3b82f6)
10
10
  ![Codex](https://img.shields.io/badge/Codex-Ready-10b981)
11
- ![Version](https://img.shields.io/badge/version-1.5.2-orange)
11
+ ![Version](https://img.shields.io/badge/version-1.5.3-orange)
12
12
  ![Agents](https://img.shields.io/badge/Agents-62-brightgreen)
13
13
  ![Skills](https://img.shields.io/badge/Skills-188-brightgreen)
14
14
  ![Memory](https://img.shields.io/badge/Local%20Memory-on-blueviolet)
@@ -18,7 +18,7 @@
18
18
 
19
19
  </div>
20
20
 
21
- **Kodelyth ECC** is a production-grade AI coding toolkit — **61 specialist agents, 188 skills, 80 commands**, a god-tier **intent-routing system**, and **local self-learning memory** that gets smarter at helping *you* every session.
21
+ **Kodelyth ECC** is a production-grade AI coding toolkit — **62 specialist agents, 188 skills, 80 commands**, a god-tier **semantic intent-routing system**, and **local self-learning memory** that gets smarter at helping *you* every session.
22
22
 
23
23
  Works with **Claude Code**, **Windsurf**, **Cursor**, **Codex CLI**, **Google Antigravity**, and **OpenCode**.
24
24
 
@@ -118,7 +118,17 @@ invoke security-reviewer
118
118
  |---|---|
119
119
  | "I'm stuck, no idea where to start" | `kodelyth-advisor` |
120
120
  | "I've been debugging this for hours" | `debug-detective` |
121
+ | "nothing works, driving me crazy" | `debug-detective` |
121
122
  | "Should I use Context or Zustand?" | `pair-programmer` |
123
+ | "help me build a todo app" | `/project-launch` |
124
+ | "I have this idea for a SaaS dashboard" | `/project-launch` |
125
+ | "I'm starting a new side project" | `/project-launch` |
126
+ | "can you review my code?" | `code-reviewer` or `/team-review` |
127
+ | "review my project before I deploy" | `/team-review` |
128
+ | "is my project ready to ship?" | `/team-review` |
129
+ | "my site looks plain, needs visuals" | `image-architect` |
130
+ | "I need an OG image for my app" | `image-architect` |
131
+ | "remember we always use pnpm here" | `/lessons` |
122
132
  | "Build failed on Vercel" | `build-error-resolver` |
123
133
  | "Is this JWT signing secure?" | `security-reviewer` |
124
134
  | "Why is this so slow?" | `performance-optimizer` |
@@ -129,6 +139,8 @@ invoke security-reviewer
129
139
  | "Cut a 1.4 release" | `release-captain` |
130
140
  | "Add accessibility to this form" | `ux-reviewer` |
131
141
  | "Open-source this project" | `opensource-forker` (chain) |
142
+ | [paste code with no text] | `code-reviewer` |
143
+ | [paste stack trace with no text] | `debug-detective` |
132
144
 
133
145
  The AI **always announces** which agent is taking over (`→ Routing to <agent>`) and **always teaches** you the explicit form for next time (`Tip: type "use <agent>"`). No silent personality changes.
134
146
 
@@ -540,7 +552,19 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for templates, checklists, and the full K
540
552
 
541
553
  ## Changelog
542
554
 
543
- See [CHANGELOG.md](CHANGELOG.md). v1.5.2 highlights:
555
+ See [CHANGELOG.md](CHANGELOG.md). v1.5.3 highlights:
556
+
557
+ - **Routing overhaul:** intent routing now reads *semantic intent*, not keywords. The AI reasons about what you mean, not what you typed.
558
+ - **Code paste detection:** paste code with no text → auto-routes to `code-reviewer`
559
+ - **Stack trace detection:** paste an error log with no text → auto-routes to `debug-detective`
560
+ - **Emotion as signal:** frustration, confusion, excitement all trigger routing
561
+ - **2–3x more signals per agent** — `debug-detective`, `code-reviewer`, `kodelyth-advisor`, `ux-reviewer`, `performance-optimizer` all expanded with natural human phrases
562
+ - **`/project-launch`** now catches: "help me build a todo app", "I have this idea", "I'm starting a new side project"
563
+ - **`/team-review`** now catches: "can you review my code?", "about to go live", "go through my code"
564
+ - **`image-architect`** now catches: "my site looks plain", "make it look good", "give it some flair"
565
+ - **`/lessons`** now catches: "from now on always X", proactive session-start offer when `tasks/lessons.md` exists
566
+
567
+ v1.5.2 highlights:
544
568
 
545
569
  - **Added:** `image-architect` agent — platform-aware AI image generation. Gemini Imagen 3 on Antigravity, DALL-E 3 on Codex, fal.ai on Claude Code, SVG fallback everywhere
546
570
  - **Added:** `/project-launch` — 5 founding-team agents fire in parallel for new projects (45 min → 10 min)
package/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.2
1
+ 1.5.4
@@ -72,3 +72,20 @@ Each agent gets a **narrow, focused context** — just the project description +
72
72
  ## Arguments
73
73
 
74
74
  $ARGUMENTS
75
+
76
+ ---
77
+
78
+ ## Execute Now
79
+
80
+ Invoking this command is confirmation to proceed. Do not show this documentation to the user — execute immediately:
81
+
82
+ 1. Read `$ARGUMENTS` for the project description. If empty, ask: "What are you building? Describe it in 2–3 sentences."
83
+ 2. Once you have a project description, spawn all agents simultaneously using `run_in_background: true`:
84
+ - `architect` — system design, tech selection, component breakdown
85
+ - `pair-programmer` — implementation approach, patterns, gotchas
86
+ - `security-reviewer` — threats, auth design, data exposure risks
87
+ - `tdd-guide` — test strategy, coverage plan, critical paths to test
88
+ - `ux-reviewer` — UX flows, accessibility, interaction design
89
+ 3. Wait for all agents to complete.
90
+ 4. Aggregate into the Project Launch Report format above.
91
+ 5. End with: "Which area do you want to go deeper on first?"
@@ -88,3 +88,20 @@ System prompt cached across all agents → each pays 10% on that prefix.
88
88
  ## Arguments
89
89
 
90
90
  $ARGUMENTS
91
+
92
+ ---
93
+
94
+ ## Execute Now
95
+
96
+ Invoking this command is confirmation to proceed. Do not show this documentation to the user — execute immediately:
97
+
98
+ 1. Identify the target scope from `$ARGUMENTS` (directory, `--changed`, `--pre-release`). Default: entire current project.
99
+ 2. Spawn all agents simultaneously using `run_in_background: true`:
100
+ - `code-reviewer` — quality, patterns, complexity, naming
101
+ - `security-reviewer` — OWASP Top 10, secrets, auth gaps
102
+ - `performance-optimizer` — N+1, memory, bundle size, slow queries
103
+ - `api-guardian` — breaking changes, contract drift, missing validation
104
+ - If `--pre-release` in args: also spawn `release-captain`
105
+ 3. Wait for all agents to complete.
106
+ 4. Aggregate results into the Team Review Report format above.
107
+ 5. End with: "Which finding do you want to fix first?"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kodelyth-ecc",
3
- "version": "1.5.2",
4
- "description": "Production-grade AI coding toolkit \u2014 61 agents, 188 skills, 80 commands, god-tier intent routing, local self-learning memory with auto chat detection, incident response, load testing. Works with Claude Code, Windsurf, Cursor, Codex, Antigravity, and OpenCode.",
3
+ "version": "1.5.4",
4
+ "description": "Production-grade AI coding toolkit 61 agents, 188 skills, 80 commands, god-tier intent routing, local self-learning memory with auto chat detection, incident response, load testing. Works with Claude Code, Windsurf, Cursor, Codex, Antigravity, and OpenCode.",
5
5
  "author": "Kodelyth <github.com/sifxprime>",
6
6
  "license": "MIT",
7
7
  "repository": {