kodelyth-ecc 1.5.10 → 1.7.1
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/.github/workflows/publish.yml +19 -0
- package/AGENTS.md +1 -1
- package/CHANGELOG.md +475 -0
- package/CLAUDE.md +48 -16
- package/README.md +285 -81
- package/VERSION +1 -1
- package/actions/ecc-review/README.md +243 -0
- package/actions/ecc-review/action.yml +158 -0
- package/actions/ecc-review/post-comment.js +171 -0
- package/actions/ecc-review/run-review.js +285 -0
- package/agents/backdoor-hunter.md +260 -0
- package/agents/chaos-engineer.md +251 -0
- package/agents/code-stealer-detector.md +228 -0
- package/agents/jailbreak-tester.md +222 -0
- package/agents/license-violation-finder.md +212 -0
- package/agents/prompt-injection-hunter.md +126 -0
- package/agents/secret-hunter.md +209 -0
- package/agents/supply-chain-auditor.md +195 -0
- package/bin/kodelyth-ecc.js +875 -1
- package/bundles/enterprise.md +172 -0
- package/bundles/indie-hacker.md +106 -0
- package/bundles/red-team.md +138 -0
- package/cat +0 -0
- package/commands/dashboard.md +67 -0
- package/commands/devil-mode.md +121 -0
- package/commands/memory-evolve.md +71 -0
- package/commands/replay.md +61 -0
- package/commands/route-model.md +48 -0
- package/commands/swarm.md +68 -0
- package/commands/verify-supply-chain.md +59 -0
- package/docs/dashboard.md +211 -0
- package/docs/evolve.md +303 -0
- package/docs/mcp-clients.md +167 -0
- package/docs/mcp.md +178 -0
- package/docs/replay.md +244 -0
- package/docs/supply-chain.md +207 -0
- package/docs/swarm.md +243 -0
- package/hooks/hooks.json +52 -0
- package/hooks/memory/auto-recall.js +29 -1
- package/hooks/safety/README.md +124 -0
- package/hooks/safety/lib/patterns.js +179 -0
- package/hooks/safety/prompt-injection-guard.js +179 -0
- package/hooks/safety/token-budget.js +229 -0
- package/install.ps1 +199 -2
- package/install.sh +285 -3
- package/package.json +30 -4
- package/rules/common/agent-intent-routing.md +182 -0
- package/rules/common/cost-aware-model-routing.md +152 -0
- package/scripts/dashboard/data.js +353 -0
- package/scripts/dashboard/server.js +324 -0
- package/scripts/dashboard/static/index.html +645 -0
- package/scripts/evolve/analyze.js +303 -0
- package/scripts/evolve/proposals.js +162 -0
- package/scripts/evolve/stats.js +219 -0
- package/scripts/mcp/catalog.js +244 -0
- package/scripts/mcp/client.js +181 -0
- package/scripts/mcp/prompts.js +133 -0
- package/scripts/mcp/resources.js +94 -0
- package/scripts/mcp/server.js +153 -0
- package/scripts/mcp/tools.js +465 -0
- package/scripts/replay/bundle.js +191 -0
- package/scripts/replay/replay.js +107 -0
- package/scripts/router/classify.js +232 -0
- package/scripts/supply-chain/manifest.js +155 -0
- package/scripts/supply-chain/sbom.js +202 -0
- package/scripts/supply-chain/verify.js +102 -0
- package/scripts/swarm/build-plan.js +193 -0
- package/skills/cost-aware-model-routing/SKILL.md +153 -0
- package/skills/kodelyth-quickstart/SKILL.md +7 -0
- package/skills/observability-dashboard/SKILL.md +119 -0
- package/skills/self-evolving-memory/SKILL.md +175 -0
- package/skills/session-replay/SKILL.md +199 -0
- package/skills/supply-chain-verification/SKILL.md +201 -0
- package/skills/swarm-orchestrator/SKILL.md +177 -0
- package/social/card-install.svg +1 -1
- package/social/facebook-group/POST.md +121 -0
- package/social/facebook-group/fb-1-3am-debug.png +0 -0
- package/social/facebook-group/fb-1-3am-debug.svg +97 -0
- package/social/facebook-group/fb-2-cpu-upgrade.png +0 -0
- package/social/facebook-group/fb-2-cpu-upgrade.svg +132 -0
- package/social/facebook-group/fb-3-before-after.png +0 -0
- package/social/facebook-group/fb-3-before-after.svg +94 -0
- package/social/facebook-v150.svg +6 -6
- package/social/github-social-preview.svg +119 -100
- package/social/readme-hero.svg +12 -12
- package/social/section-agents.svg +57 -0
- package/social/section-author.svg +54 -0
- package/social/section-dashboard.svg +59 -0
- package/social/section-devil.svg +54 -0
- package/social/section-hooks.svg +51 -0
- package/social/section-install.svg +42 -0
- package/social/section-learning.svg +52 -0
- package/social/section-mcp.svg +46 -0
- package/social/section-memory.svg +57 -0
- package/social/section-parallel.svg +72 -0
- package/social/section-routing.svg +51 -0
- package/social/x-card-agents-grid.svg +6 -6
- package/tests/dashboard/data.test.js +235 -0
- package/tests/dashboard/server.test.js +240 -0
- package/tests/evolve/analyze.test.js +169 -0
- package/tests/evolve/proposals.test.js +173 -0
- package/tests/evolve/stats.test.js +167 -0
- package/tests/mcp/catalog.test.js +98 -0
- package/tests/mcp/client.test.js +113 -0
- package/tests/mcp/resources-prompts.test.js +70 -0
- package/tests/mcp/tools.test.js +159 -0
- package/tests/replay/bundle.test.js +181 -0
- package/tests/replay/replay.test.js +131 -0
- package/tests/router/classify.test.js +164 -0
- package/tests/safety/patterns.test.js +94 -0
- package/tests/safety/prompt-injection-guard.test.js +111 -0
- package/tests/safety/token-budget.test.js +119 -0
- package/tests/supply-chain/manifest.test.js +147 -0
- package/tests/supply-chain/sbom.test.js +170 -0
- package/tests/supply-chain/verify.test.js +146 -0
- package/tests/swarm/build-plan.test.js +188 -0
- package/wiki/Agent-Reference.md +58 -7
- package/wiki/FAQ.md +204 -7
- package/wiki/Home.md +104 -29
- package/wiki/Hook-Reference.md +1 -1
- package/wiki/Installation-Guide.md +109 -6
- package/wiki/Platform-Support.md +189 -72
- package/wiki/Skill-Reference.md +101 -6
- package/.agent/rules/README.md +0 -108
- package/.agent/rules/agents.md +0 -94
- package/.agent/rules/code-review.md +0 -124
- package/.agent/rules/coding-style.md +0 -122
- package/.agent/rules/design-quality.md +0 -63
- package/.agent/rules/development-workflow.md +0 -44
- package/.agent/rules/git-mastery.md +0 -366
- package/.agent/rules/git-workflow.md +0 -24
- package/.agent/rules/hooks.md +0 -25
- package/.agent/rules/kodelyth-always-on.md +0 -63
- package/.agent/rules/kodelyth-quickstart.md +0 -207
- package/.agent/rules/observability.md +0 -390
- package/.agent/rules/patterns.md +0 -50
- package/.agent/rules/performance.md +0 -178
- package/.agent/rules/security.md +0 -58
- package/.agent/rules/smart-debug.md +0 -241
- package/.agent/rules/soul.md +0 -32
- package/.agent/rules/testing.md +0 -46
- package/.agent/skills/api-guardian.md +0 -279
- package/.agent/skills/architect.md +0 -211
- package/.agent/skills/build-error-resolver.md +0 -114
- package/.agent/skills/chief-of-staff.md +0 -151
- package/.agent/skills/code-architect.md +0 -71
- package/.agent/skills/code-explorer.md +0 -69
- package/.agent/skills/code-reviewer.md +0 -237
- package/.agent/skills/code-simplifier.md +0 -47
- package/.agent/skills/comment-analyzer.md +0 -45
- package/.agent/skills/conversation-analyzer.md +0 -52
- package/.agent/skills/cpp-build-resolver.md +0 -90
- package/.agent/skills/cpp-reviewer.md +0 -72
- package/.agent/skills/csharp-reviewer.md +0 -101
- package/.agent/skills/dart-build-resolver.md +0 -201
- package/.agent/skills/database-reviewer.md +0 -91
- package/.agent/skills/debug-detective.md +0 -409
- package/.agent/skills/doc-updater.md +0 -107
- package/.agent/skills/docs-lookup.md +0 -68
- package/.agent/skills/e2e-runner.md +0 -107
- package/.agent/skills/flutter-reviewer.md +0 -243
- package/.agent/skills/gan-evaluator.md +0 -209
- package/.agent/skills/gan-generator.md +0 -131
- package/.agent/skills/gan-planner.md +0 -99
- package/.agent/skills/go-build-resolver.md +0 -94
- package/.agent/skills/go-reviewer.md +0 -76
- package/.agent/skills/harness-optimizer.md +0 -35
- package/.agent/skills/healthcare-reviewer.md +0 -83
- package/.agent/skills/java-build-resolver.md +0 -153
- package/.agent/skills/java-reviewer.md +0 -92
- package/.agent/skills/kodelyth-advisor.md +0 -172
- package/.agent/skills/kotlin-build-resolver.md +0 -118
- package/.agent/skills/kotlin-reviewer.md +0 -159
- package/.agent/skills/loop-operator.md +0 -36
- package/.agent/skills/migration-guide.md +0 -368
- package/.agent/skills/opensource-forker.md +0 -198
- package/.agent/skills/opensource-packager.md +0 -249
- package/.agent/skills/opensource-sanitizer.md +0 -188
- package/.agent/skills/pair-programmer.md +0 -260
- package/.agent/skills/performance-optimizer.md +0 -446
- package/.agent/skills/planner.md +0 -212
- package/.agent/skills/pr-test-analyzer.md +0 -45
- package/.agent/skills/python-reviewer.md +0 -98
- package/.agent/skills/pytorch-build-resolver.md +0 -120
- package/.agent/skills/refactor-cleaner.md +0 -85
- package/.agent/skills/rust-build-resolver.md +0 -148
- package/.agent/skills/rust-reviewer.md +0 -94
- package/.agent/skills/security-reviewer.md +0 -108
- package/.agent/skills/seo-specialist.md +0 -62
- package/.agent/skills/silent-failure-hunter.md +0 -50
- package/.agent/skills/tdd-guide.md +0 -91
- package/.agent/skills/type-design-analyzer.md +0 -41
- package/.agent/skills/typescript-reviewer.md +0 -112
- package/.agent/skills/ux-reviewer.md +0 -483
- package/.agent/workflows/agent-sort.md +0 -23
- package/.agent/workflows/aside.md +0 -164
- package/.agent/workflows/build-fix.md +0 -62
- package/.agent/workflows/checkpoint.md +0 -74
- package/.agent/workflows/claw.md +0 -23
- package/.agent/workflows/code-review.md +0 -289
- package/.agent/workflows/context-budget.md +0 -23
- package/.agent/workflows/cpp-build.md +0 -173
- package/.agent/workflows/cpp-review.md +0 -132
- package/.agent/workflows/cpp-test.md +0 -251
- package/.agent/workflows/devfleet.md +0 -23
- package/.agent/workflows/docs.md +0 -23
- package/.agent/workflows/e2e.md +0 -268
- package/.agent/workflows/eval.md +0 -23
- package/.agent/workflows/evolve.md +0 -178
- package/.agent/workflows/feature-dev.md +0 -49
- package/.agent/workflows/flutter-build.md +0 -164
- package/.agent/workflows/flutter-review.md +0 -116
- package/.agent/workflows/flutter-test.md +0 -144
- package/.agent/workflows/gan-build.md +0 -99
- package/.agent/workflows/gan-design.md +0 -35
- package/.agent/workflows/go-build.md +0 -183
- package/.agent/workflows/go-review.md +0 -148
- package/.agent/workflows/go-test.md +0 -268
- package/.agent/workflows/gradle-build.md +0 -70
- package/.agent/workflows/harness-audit.md +0 -73
- package/.agent/workflows/hookify-configure.md +0 -14
- package/.agent/workflows/hookify-help.md +0 -46
- package/.agent/workflows/hookify-list.md +0 -21
- package/.agent/workflows/hookify.md +0 -50
- package/.agent/workflows/instinct-export.md +0 -66
- package/.agent/workflows/instinct-import.md +0 -114
- package/.agent/workflows/instinct-status.md +0 -59
- package/.agent/workflows/jira.md +0 -106
- package/.agent/workflows/kotlin-build.md +0 -174
- package/.agent/workflows/kotlin-review.md +0 -140
- package/.agent/workflows/kotlin-test.md +0 -312
- package/.agent/workflows/learn-eval.md +0 -116
- package/.agent/workflows/learn.md +0 -70
- package/.agent/workflows/loop-start.md +0 -32
- package/.agent/workflows/loop-status.md +0 -24
- package/.agent/workflows/model-route.md +0 -26
- package/.agent/workflows/multi-backend.md +0 -158
- package/.agent/workflows/multi-execute.md +0 -315
- package/.agent/workflows/multi-frontend.md +0 -158
- package/.agent/workflows/multi-plan.md +0 -268
- package/.agent/workflows/multi-workflow.md +0 -191
- package/.agent/workflows/orchestrate.md +0 -135
- package/.agent/workflows/plan.md +0 -117
- package/.agent/workflows/pm2.md +0 -272
- package/.agent/workflows/projects.md +0 -39
- package/.agent/workflows/promote.md +0 -41
- package/.agent/workflows/prompt-optimize.md +0 -23
- package/.agent/workflows/prp-commit.md +0 -112
- package/.agent/workflows/prp-implement.md +0 -385
- package/.agent/workflows/prp-plan.md +0 -502
- package/.agent/workflows/prp-pr.md +0 -184
- package/.agent/workflows/prp-prd.md +0 -447
- package/.agent/workflows/prune.md +0 -31
- package/.agent/workflows/python-review.md +0 -297
- package/.agent/workflows/quality-gate.md +0 -29
- package/.agent/workflows/refactor-clean.md +0 -80
- package/.agent/workflows/resume-session.md +0 -156
- package/.agent/workflows/review-pr.md +0 -37
- package/.agent/workflows/rules-distill.md +0 -20
- package/.agent/workflows/rust-build.md +0 -187
- package/.agent/workflows/rust-review.md +0 -142
- package/.agent/workflows/rust-test.md +0 -308
- package/.agent/workflows/santa-loop.md +0 -175
- package/.agent/workflows/save-session.md +0 -275
- package/.agent/workflows/sessions.md +0 -333
- package/.agent/workflows/setup-pm.md +0 -80
- package/.agent/workflows/skill-create.md +0 -174
- package/.agent/workflows/skill-health.md +0 -54
- package/.agent/workflows/tdd.md +0 -231
- package/.agent/workflows/test-coverage.md +0 -69
- package/.agent/workflows/update-codemaps.md +0 -72
- package/.agent/workflows/update-docs.md +0 -84
- package/.agent/workflows/verify.md +0 -23
package/README.md
CHANGED
|
@@ -8,9 +8,10 @@
|
|
|
8
8
|

|
|
9
9
|

|
|
10
10
|

|
|
11
|
-

|
|
12
|
+

|
|
13
|
+

|
|
14
|
+

|
|
14
15
|

|
|
15
16
|

|
|
16
17
|

|
|
@@ -18,17 +19,17 @@
|
|
|
18
19
|
|
|
19
20
|
</div>
|
|
20
21
|
|
|
21
|
-
**Kodelyth ECC** is a production-grade AI coding toolkit — **
|
|
22
|
+
**Kodelyth ECC** is a production-grade AI coding toolkit — **70 specialist agents (incl. an 8-agent devil-mode adversarial crew), 194 skills, 97 commands**, a god-tier **semantic intent-routing system**, local self-learning memory, MCP server, swarm orchestrator, and an observability dashboard — all local, zero telemetry.
|
|
22
23
|
|
|
23
|
-
Works with **Claude Code**, **Windsurf**, **Cursor**, **Codex CLI**, **Google Antigravity**, and **
|
|
24
|
+
Works with **Claude Code**, **Windsurf**, **Cursor**, **Codex CLI**, **Google Antigravity**, **OpenCode**, **Cline**, **Roo Code**, **Aider**, **Kimi**, and **Gemini CLI**.
|
|
24
25
|
|
|
25
|
-
> No
|
|
26
|
+
> No telemetry. No cloud. Just rules, agents, skills, MCP server, and your own private memory store — all on your disk. The local dashboard gives you full visibility without sending anything anywhere.
|
|
26
27
|
|
|
27
28
|
---
|
|
28
29
|
|
|
29
|
-
##
|
|
30
|
+
## Why ECC ≠ Another Agent Collection
|
|
30
31
|
|
|
31
|
-
Most "AI agent kits" are folders of markdown files you have to remember the names of. ECC
|
|
32
|
+
Most "AI agent kits" are folders of markdown files you have to remember the names of. **ECC is infrastructure** — a layered system where intent routing, compound memory, parallel orchestration, and quality hooks all reinforce each other.
|
|
32
33
|
|
|
33
34
|
```
|
|
34
35
|
You: "I've been staring at this NullPointerException for two hours,
|
|
@@ -42,12 +43,48 @@ AI: → Routing to debug-detective (your error + frustration matches the bug-
|
|
|
42
43
|
First, can you share the full stack trace and...
|
|
43
44
|
```
|
|
44
45
|
|
|
45
|
-
You never typed `use debug-detective`. You didn't have to.
|
|
46
|
+
You never typed `use debug-detective`. You didn't have to. The toolkit read the intent, picked the specialist, and announced the routing. Next time you can invoke it directly — but you don't have to remember names to get senior-grade help.
|
|
47
|
+
|
|
48
|
+
### The Layer Stack
|
|
49
|
+
|
|
50
|
+
| Layer | What it does | Other kits |
|
|
51
|
+
|---|---|---|
|
|
52
|
+
| **Intent routing** | Plain-language → right specialist via 10-tier priority rules | Mostly missing — you memorize names |
|
|
53
|
+
| **70 agents** | Specialists with playbooks, severity calibration, real commands | Often persona-only ("you are a senior engineer...") |
|
|
54
|
+
| **194 skills** | Domain knowledge files agents read on demand | Rarely separated from agents |
|
|
55
|
+
| **97 commands** | Slash workflows (`/tdd`, `/devil-mode`, `/team-review`) | Limited or none |
|
|
56
|
+
| **8 parallel commands** | Fire 3-8 agents simultaneously, aggregate results | Rare |
|
|
57
|
+
| **Compound memory** | BM25 local recall + auto-inject + project lessons | Cloud-only or absent |
|
|
58
|
+
| **22+ hooks** | Quality gates, secret scan, project-DNA detection | Often missing |
|
|
59
|
+
| **11 IDE platforms** | Claude Code, Windsurf, Cursor, Codex, Antigravity, OpenCode, Cline, Roo Code, Aider, Kimi, Gemini CLI (13 install targets) | 1-2 platforms typical |
|
|
60
|
+
| **Zero telemetry** | Everything stays on your disk; verifiable | Many kits phone home |
|
|
61
|
+
|
|
62
|
+
### Quick Comparison vs Other Kits
|
|
63
|
+
|
|
64
|
+
| Feature | **Kodelyth ECC** | `agency-agents` | `awesome-claude-agents` | Generic prompt libs |
|
|
65
|
+
|---|---|---|---|---|
|
|
66
|
+
| Specialist agents | **70** | ~30 | ~20 | Varies |
|
|
67
|
+
| Skills as separate layer | ✅ 194 | ❌ | ❌ | ❌ |
|
|
68
|
+
| Slash commands | ✅ 97 | Some | Some | ❌ |
|
|
69
|
+
| **Parallel multi-agent commands** | ✅ 8 (incl. `/devil-mode`) | ❌ | ❌ | ❌ |
|
|
70
|
+
| **Intent routing (plain language → agent)** | ✅ 10-tier rule | ❌ | ❌ | ❌ |
|
|
71
|
+
| **Local BM25 self-learning memory** | ✅ | ❌ | ❌ | ❌ |
|
|
72
|
+
| **Compound learning from corrections** | ✅ `tasks/lessons.md` | ❌ | ❌ | ❌ |
|
|
73
|
+
| **Adversarial / red-team agents** | ✅ 8 (devil-mode) | ❌ | ❌ | ❌ |
|
|
74
|
+
| Quality hooks | ✅ 22+ | Some | ❌ | ❌ |
|
|
75
|
+
| IDE platforms | **11** (Claude Code, Windsurf, Cursor, Codex, Antigravity, OpenCode, Cline, Roo Code, Aider, Kimi, Gemini CLI) | 1-2 | 1 | Varies |
|
|
76
|
+
| Telemetry | ❌ none | Varies | ❌ | Varies |
|
|
77
|
+
| Test coverage | ✅ 336 tests | ❌ | ❌ | ❌ |
|
|
78
|
+
| Distributed via | `npx`, curl, clone | Manual | Manual | Manual |
|
|
46
79
|
|
|
47
80
|
---
|
|
48
81
|
|
|
49
82
|
## Install
|
|
50
83
|
|
|
84
|
+
<div align="center">
|
|
85
|
+
<img src="social/section-install.svg" alt="Install — One command, 11 platforms, any OS" width="900"/>
|
|
86
|
+
</div>
|
|
87
|
+
|
|
51
88
|
### Option 1 — npx from npm (recommended, any platform)
|
|
52
89
|
|
|
53
90
|
```bash
|
|
@@ -58,10 +95,36 @@ npx kodelyth-ecc --target cursor-project # Cursor IDE
|
|
|
58
95
|
npx kodelyth-ecc --target codex-home # Codex CLI
|
|
59
96
|
npx kodelyth-ecc --target antigravity # Google Antigravity
|
|
60
97
|
npx kodelyth-ecc --target opencode # OpenCode
|
|
98
|
+
npx kodelyth-ecc --target cline # Cline (VS Code)
|
|
99
|
+
npx kodelyth-ecc --target roocode # Roo Code (VS Code)
|
|
100
|
+
npx kodelyth-ecc --target aider # Aider terminal agent
|
|
101
|
+
npx kodelyth-ecc --target kimi # Kimi Code
|
|
102
|
+
npx kodelyth-ecc --target gemini-project # Gemini CLI (project)
|
|
103
|
+
npx kodelyth-ecc --target gemini-home # Gemini CLI (global)
|
|
61
104
|
```
|
|
62
105
|
|
|
63
106
|
Node.js 18+ required. [Download Node](https://nodejs.org) if you don't have it.
|
|
64
107
|
|
|
108
|
+
### Platform support at a glance
|
|
109
|
+
|
|
110
|
+
Feature depth varies by platform — hooks are a Claude Code native format, and some platforms have no agent/command concept:
|
|
111
|
+
|
|
112
|
+
| Platform | Agents | Skills | Commands | Hooks | Rules |
|
|
113
|
+
|---|---|---|---|---|---|
|
|
114
|
+
| **Claude Code** | ✓ 70 | ✓ 194 | ✓ 97 | ✓ 22+ | ✓ |
|
|
115
|
+
| **Roo Code** | ✓ | ✓ | ✓ | — | ✓ |
|
|
116
|
+
| **Codex CLI** | ✓ | ✓ | ✓ | — | ✓ |
|
|
117
|
+
| **Aider** | ✓ | ✓ | ✓ | — | ✓ |
|
|
118
|
+
| **Kimi** | ✓ | ✓ | ✓ | — | ✓ |
|
|
119
|
+
| **Windsurf** | ✓ | ✓ | — | — | ✓ |
|
|
120
|
+
| **Antigravity** | ✓ | partial | ✓ | — | ✓ |
|
|
121
|
+
| **Gemini CLI** | ✓ | ✓ | — | — | ✓ |
|
|
122
|
+
| **Cursor** | — | ✓ | — | — | ✓ |
|
|
123
|
+
| **Cline** | ✓ | — | ✓ | — | ✓ |
|
|
124
|
+
| **OpenCode** | — | — | — | — | ✓ |
|
|
125
|
+
|
|
126
|
+
Hooks use Claude Code's JSON settings format — no equivalent exists on other platforms. Cursor reads rules and skills from `.cursor/`; its agent system uses a different format not yet compatible with ECC agents.
|
|
127
|
+
|
|
65
128
|
### Option 2 — npx from GitHub (always latest commit)
|
|
66
129
|
|
|
67
130
|
```bash
|
|
@@ -82,6 +145,26 @@ With a target:
|
|
|
82
145
|
curl -fsSL https://raw.githubusercontent.com/sifxprime/kodelyth-ecc/main/install.sh | bash -s -- --target windsurf-project
|
|
83
146
|
```
|
|
84
147
|
|
|
148
|
+
### Power Bundles
|
|
149
|
+
|
|
150
|
+
Pre-configured for who you actually are:
|
|
151
|
+
|
|
152
|
+
```bash
|
|
153
|
+
npx kodelyth-ecc --bundle indie-hacker # Solo founder / SaaS — ship fast, validate, harden
|
|
154
|
+
npx kodelyth-ecc --bundle red-team # Security engineer — devil-mode + adversarial workflows
|
|
155
|
+
npx kodelyth-ecc --bundle enterprise # Compliance / audit team — SBOM, license, supply chain
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
Each bundle installs the full ECC toolkit (all 70 agents, 194 skills, 97 commands, 22+ hooks), adds a `BUNDLE.md` cheat sheet, and biases the AI toward audience-fit workflows on every session.
|
|
159
|
+
|
|
160
|
+
Combine with any target:
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
npx kodelyth-ecc --bundle red-team --target windsurf-project
|
|
164
|
+
npx kodelyth-ecc --bundle enterprise --target codex-home
|
|
165
|
+
npx kodelyth-ecc --bundle indie-hacker --target antigravity
|
|
166
|
+
```
|
|
167
|
+
|
|
85
168
|
### Option 4 — Clone and run
|
|
86
169
|
|
|
87
170
|
```bash
|
|
@@ -99,8 +182,48 @@ cd kodelyth-ecc
|
|
|
99
182
|
|
|
100
183
|
---
|
|
101
184
|
|
|
185
|
+
## MCP Server — Universal Adapter
|
|
186
|
+
|
|
187
|
+
<div align="center">
|
|
188
|
+
<img src="social/section-mcp.svg" alt="MCP Server — universal adapter for any agent framework" width="900"/>
|
|
189
|
+
</div>
|
|
190
|
+
|
|
191
|
+
Run ECC as a Model Context Protocol server and consume it from Claude Desktop, LangGraph, AutoGen, CrewAI, OpenAI Agents SDK, Cursor, Windsurf — anything that speaks MCP.
|
|
192
|
+
|
|
193
|
+
```bash
|
|
194
|
+
npx kodelyth-ecc mcp # stdio JSON-RPC server
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
What it exposes (all local, zero telemetry):
|
|
198
|
+
|
|
199
|
+
- **16 tools** — `route_intent`, `recall_memory`, `capture_memory`, `list_agents`, `get_skill`, `audit_skill_match`, …
|
|
200
|
+
- **6 prompts** — full intent routing rule, agents/skills/commands overviews, handoff chains, devil-mode
|
|
201
|
+
- **365 resources** — every agent, skill, command, rule, and bundle addressable via `kodelyth://...` URIs
|
|
202
|
+
|
|
203
|
+
Drop into Claude Desktop in 30 seconds:
|
|
204
|
+
|
|
205
|
+
```jsonc
|
|
206
|
+
// claude_desktop_config.json
|
|
207
|
+
{
|
|
208
|
+
"mcpServers": {
|
|
209
|
+
"kodelyth-ecc": {
|
|
210
|
+
"command": "npx",
|
|
211
|
+
"args": ["-y", "kodelyth-ecc", "mcp"]
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
Full reference: [`docs/mcp.md`](docs/mcp.md).
|
|
218
|
+
|
|
219
|
+
---
|
|
220
|
+
|
|
102
221
|
## How Intent Routing Works
|
|
103
222
|
|
|
223
|
+
<div align="center">
|
|
224
|
+
<img src="social/section-routing.svg" alt="Intent routing — plain language to the right specialist agent" width="900"/>
|
|
225
|
+
</div>
|
|
226
|
+
|
|
104
227
|
The toolkit ships with a single rule file (`rules/common/agent-intent-routing.md`) that the AI loads automatically on every session. It maps **what you say** to **the right specialist agent** across 10 priority tiers.
|
|
105
228
|
|
|
106
229
|
### Two activation paths
|
|
@@ -167,7 +290,86 @@ See `skills/agent-handoff/SKILL.md` for the full handoff protocol and standard c
|
|
|
167
290
|
|
|
168
291
|
---
|
|
169
292
|
|
|
170
|
-
##
|
|
293
|
+
## Parallel Agents — 8 Commands, Minutes Not Hours
|
|
294
|
+
|
|
295
|
+
<div align="center">
|
|
296
|
+
<img src="social/section-parallel.svg" alt="Parallel agents — fire multiple specialists simultaneously" width="900"/>
|
|
297
|
+
</div>
|
|
298
|
+
|
|
299
|
+
Eight commands fire multiple specialist agents simultaneously and aggregate their results into a single structured report.
|
|
300
|
+
|
|
301
|
+
| Command | Agents Fired | Time Saved |
|
|
302
|
+
|---|---|---|
|
|
303
|
+
| `/project-launch` | architect + pair-programmer + security-reviewer + tdd-guide + ux-reviewer | 45 min → 10 min |
|
|
304
|
+
| `/team-review` | code-reviewer + security-reviewer + performance-optimizer + api-guardian | 60 min → 15 min |
|
|
305
|
+
| `/security-audit` | security-reviewer + dependency-doctor + api-guardian | 30 min → 8 min |
|
|
306
|
+
| `/debug-blitz` | debug-detective + silent-failure-hunter + env-debugger | 60 min → 15 min |
|
|
307
|
+
| `/refactor-sprint` | refactor-cleaner + code-simplifier + type-design-analyzer + tdd-guide | 45 min → 12 min |
|
|
308
|
+
| `/pre-release` | release-captain + security-reviewer + code-reviewer | 30 min → 8 min |
|
|
309
|
+
| `/onboard` | code-explorer + architect + doc-updater | 45 min → 12 min |
|
|
310
|
+
| `/devil-mode` | 8 adversarial agents (see below) | Hours → 20 min |
|
|
311
|
+
|
|
312
|
+
Each command waits for all agents to complete, then returns a single **Team Review Report** with findings bucketed by severity: CRITICAL → HIGH → MEDIUM → LOW.
|
|
313
|
+
|
|
314
|
+
---
|
|
315
|
+
|
|
316
|
+
## Devil Mode — 8 Adversarial Agents
|
|
317
|
+
|
|
318
|
+
<div align="center">
|
|
319
|
+
<img src="social/section-devil.svg" alt="Devil Mode — 8 adversarial agents, red-team your own code" width="900"/>
|
|
320
|
+
</div>
|
|
321
|
+
|
|
322
|
+
8 adversarial agents that read your codebase the way an attacker would. Fire them in parallel with `/devil-mode`:
|
|
323
|
+
|
|
324
|
+
```
|
|
325
|
+
/devil-mode --pre-public # before going open-source — full secret/license/IP sweep
|
|
326
|
+
/devil-mode --pre-launch # before launch — adds AI red-team + chaos planning
|
|
327
|
+
/devil-mode --all # all 8 adversarial agents in parallel
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
The crew: `prompt-injection-hunter`, `supply-chain-auditor`, `secret-hunter`, `license-violation-finder`, `jailbreak-tester`, `code-stealer-detector`, `backdoor-hunter`, `chaos-engineer`. Each ships with real bash-grep patterns, severity calibration, and remediation playbooks — not theatrical personas.
|
|
331
|
+
|
|
332
|
+
---
|
|
333
|
+
|
|
334
|
+
## Live Dashboard — Full Visibility, Localhost Only
|
|
335
|
+
|
|
336
|
+
<div align="center">
|
|
337
|
+
<img src="social/section-dashboard.svg" alt="Dashboard — localhost observability, zero telemetry" width="900"/>
|
|
338
|
+
</div>
|
|
339
|
+
|
|
340
|
+
**You have a working, real-time dashboard.** One command launches it:
|
|
341
|
+
|
|
342
|
+
```bash
|
|
343
|
+
npx kodelyth-ecc dashboard
|
|
344
|
+
# Opens http://127.0.0.1:5747 in your browser
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
What's inside:
|
|
348
|
+
|
|
349
|
+
| Tab | What you see |
|
|
350
|
+
|---|---|
|
|
351
|
+
| **Overview** | Agent count, memory stats, session count, recent activity |
|
|
352
|
+
| **Memory** | Browse, search, and manage your local BM25 memory store |
|
|
353
|
+
| **Evolve** | Self-improving memory — review AI-proposed refinements |
|
|
354
|
+
| **Catalog** | Full searchable index of all 70 agents, 194 skills, 97 commands |
|
|
355
|
+
| **Sessions** | Browse past session excerpts and exported bundles |
|
|
356
|
+
|
|
357
|
+
Security design:
|
|
358
|
+
- **GET-only** — no write endpoints accessible from the UI
|
|
359
|
+
- **Localhost-bound** — refuses connections from non-localhost Host headers (DNS rebinding protection)
|
|
360
|
+
- **Hardened headers** — `Content-Security-Policy`, `X-Frame-Options`, `X-Content-Type-Options` on every response
|
|
361
|
+
- **Zero telemetry** — no external network calls ever leave your machine
|
|
362
|
+
- **Max 10 SSE clients** — connection cap prevents resource exhaustion
|
|
363
|
+
|
|
364
|
+
Full reference: [`docs/dashboard.md`](docs/dashboard.md).
|
|
365
|
+
|
|
366
|
+
---
|
|
367
|
+
|
|
368
|
+
## Kodelyth Memory — Local Self-Learning
|
|
369
|
+
|
|
370
|
+
<div align="center">
|
|
371
|
+
<img src="social/section-memory.svg" alt="Kodelyth Memory — local BM25 self-learning memory" width="900"/>
|
|
372
|
+
</div>
|
|
171
373
|
|
|
172
374
|
The first time you solve a hard problem, ECC remembers what worked. The next time you hit something similar, your AI surfaces the past solution before you ask.
|
|
173
375
|
|
|
@@ -196,7 +398,7 @@ Session 2 (August, new project):
|
|
|
196
398
|
| **Storage** | `~/.kodelyth/memory/memories.jsonl` — append-only log on your disk only. Override with `KODELYTH_MEMORY_DIR`. |
|
|
197
399
|
| **Retrieval** | BM25 keyword + tag search. Pure JS, sub-millisecond, no embeddings, no network. |
|
|
198
400
|
| **Session-start injection** | A SessionStart hook builds a cache-friendly context block: stable prefix (your patterns + recent project memories) → variable suffix (relevant to current task). |
|
|
199
|
-
| **Auto chat detection**
|
|
401
|
+
| **Auto chat detection** | A `UserPromptSubmit` hook watches every message you type, runs BM25 search on it, and injects relevant memories **before the AI responds**. Per-session repeat suppression. |
|
|
200
402
|
| **Cost win** | The stable prefix sits in the prompt cache. Anthropic charges 10% on cached tokens (5-min TTL); OpenAI auto-caches prefixes ≥1024 tokens. Long sessions become dramatically cheaper. |
|
|
201
403
|
|
|
202
404
|
### Privacy
|
|
@@ -224,7 +426,11 @@ See `skills/kodelyth-memory/SKILL.md` for the full design + CLI reference.
|
|
|
224
426
|
|
|
225
427
|
---
|
|
226
428
|
|
|
227
|
-
## Compound Learning System — Self-Improvement Loop
|
|
429
|
+
## Compound Learning System — Self-Improvement Loop
|
|
430
|
+
|
|
431
|
+
<div align="center">
|
|
432
|
+
<img src="social/section-learning.svg" alt="Compound learning — every correction stacks, Claude matches your style" width="900"/>
|
|
433
|
+
</div>
|
|
228
434
|
|
|
229
435
|
Every correction you give Claude gets encoded into your project permanently. The toolkit gets smarter every session without any effort from you.
|
|
230
436
|
|
|
@@ -253,7 +459,7 @@ Month 3: You try another tool
|
|
|
253
459
|
|---|---|---|---|
|
|
254
460
|
| **Project Lessons** | `tasks/lessons.md` | Per-project | Hard rules from your corrections. Injected at session start as mandatory context. |
|
|
255
461
|
| **Global Memory** | `~/.kodelyth/memory/` | Cross-project | BM25 fuzzy recall of past solutions. Auto-fires on every prompt you type. |
|
|
256
|
-
| **Intent Routing** |
|
|
462
|
+
| **Intent Routing** | 70 agents | Always-on | Routes your message to the right specialist from the first word. No names needed. |
|
|
257
463
|
|
|
258
464
|
### How it works under the hood
|
|
259
465
|
|
|
@@ -261,22 +467,15 @@ Month 3: You try another tool
|
|
|
261
467
|
- Scans session JSONL for 12 correction signal patterns (`"no don't"`, `"use X instead"`, `"stop doing Y"`, `"we always"`, `"wrong approach"`, etc.)
|
|
262
468
|
- Extracts them as plain-language rules
|
|
263
469
|
- Appends them to `tasks/lessons.md` with date grouping
|
|
264
|
-
- Creates the file automatically if it doesn't exist
|
|
265
470
|
|
|
266
471
|
**`read-lessons.js`** — SessionStart hook, fires first before any other hook:
|
|
267
472
|
- Reads `tasks/lessons.md` and formats rules as `PROJECT LESSONS — HARD RULES` block
|
|
268
473
|
- Detects project DNA automatically: Node.js + framework (Next.js, React, NestJS, etc.), Go, Rust, Python, Java/Gradle, package manager (pnpm/bun/yarn/npm), test runner
|
|
269
474
|
- Surfaces open `tasks/todo.md` items into session context
|
|
270
|
-
- All injected as `additionalContext` — Claude sees it before your first message
|
|
271
|
-
|
|
272
|
-
**`rules/common/self-improvement-workflow.md`** — always-on rule:
|
|
273
|
-
- Boris Cherny's (Claude Code creator) internal team workflow, all 6 patterns
|
|
274
|
-
- Plan Node Default, Subagent Strategy, Self-Improvement Loop, Verification Before Done, Demand Elegance, Autonomous Bug Fixing
|
|
275
|
-
- Extended with ECC's three-layer compound memory protocol
|
|
276
475
|
|
|
277
476
|
### `tasks/lessons.md` — your project's rulebook
|
|
278
477
|
|
|
279
|
-
Edit it freely. Add rules manually. Remove rules that no longer apply. It's a plain markdown file at `tasks/lessons.md` in your project root.
|
|
478
|
+
Edit it freely. Add rules manually. Remove rules that no longer apply. It's a plain markdown file at `tasks/lessons.md` in your project root.
|
|
280
479
|
|
|
281
480
|
```markdown
|
|
282
481
|
# Claude Lessons
|
|
@@ -297,17 +496,22 @@ Project: **my-app**
|
|
|
297
496
|
|
|
298
497
|
| Component | Count | Description |
|
|
299
498
|
|---|---|---|
|
|
300
|
-
| Agents | **
|
|
301
|
-
| Skills | **
|
|
302
|
-
| Commands | **
|
|
303
|
-
|
|
|
304
|
-
|
|
|
499
|
+
| Agents | **70** | Specialist subagents — reviewers, planners, debuggers, architects, devil-mode adversarial crew, incident-commander, load-tester, memory, image-architect |
|
|
500
|
+
| Skills | **194** | Domain knowledge — patterns, testing, security, DevOps, intent routing, memory |
|
|
501
|
+
| Commands | **97** | Slash command workflows (`/tdd`, `/plan`, `/memory`, `/devil-mode`, `/doctor`, `/update`, etc.) |
|
|
502
|
+
| Parallel commands | **8** | `/devil-mode`, `/team-review`, `/security-audit`, `/debug-blitz`, `/refactor-sprint`, `/pre-release`, `/onboard`, `/project-launch` |
|
|
503
|
+
| Hooks | **22+** | Quality gates, secret scanning, branch checks, memory inject + capture + correction + project DNA |
|
|
504
|
+
| Rules | **14** | Always-on coding standards + intent routing + memory protocol + self-improvement workflow |
|
|
305
505
|
| Memory | **local** | BM25-indexed personal memory at `~/.kodelyth/memory/` (zero deps) |
|
|
306
506
|
|
|
307
507
|
---
|
|
308
508
|
|
|
309
509
|
## Agent Arsenal
|
|
310
510
|
|
|
511
|
+
<div align="center">
|
|
512
|
+
<img src="social/section-agents.svg" alt="70 specialist agents — one for every situation" width="900"/>
|
|
513
|
+
</div>
|
|
514
|
+
|
|
311
515
|
### Kodelyth Exclusives — The 16 Agents That Make ECC
|
|
312
516
|
|
|
313
517
|
| Agent | One-line job |
|
|
@@ -329,14 +533,6 @@ Project: **my-app**
|
|
|
329
533
|
| `flake-hunter` | Stabilizes flaky tests — never adds blind retries |
|
|
330
534
|
| `image-architect` | AI image generation — Gemini/DALL-E/fal.ai/SVG, platform-aware |
|
|
331
535
|
|
|
332
|
-
### Parallel Commands — New in v1.5.2
|
|
333
|
-
|
|
334
|
-
| Command | What it does | Time saved |
|
|
335
|
-
|---|---|---|
|
|
336
|
-
| `/project-launch` | Fires 5 founding-team agents simultaneously on a new project | 45 min → 10 min |
|
|
337
|
-
| `/team-review` | Fires 4 audit agents simultaneously on existing code | 60 min → 15 min |
|
|
338
|
-
| `/lessons` | Loads project lessons on any platform (cross-platform) | Works everywhere |
|
|
339
|
-
|
|
340
536
|
### Agent Categories
|
|
341
537
|
|
|
342
538
|
| Category | Agents |
|
|
@@ -359,14 +555,18 @@ Project: **my-app**
|
|
|
359
555
|
|
|
360
556
|
## Hooks — Always Running in Background
|
|
361
557
|
|
|
558
|
+
<div align="center">
|
|
559
|
+
<img src="social/section-hooks.svg" alt="22+ automated quality hooks — PreToolUse, PostToolUse, Stop" width="900"/>
|
|
560
|
+
</div>
|
|
561
|
+
|
|
362
562
|
Once installed (Claude Code target), these hooks run automatically with zero configuration:
|
|
363
563
|
|
|
364
564
|
| Hook | What it does |
|
|
365
565
|
|---|---|
|
|
366
|
-
| Session start — lessons | Reads `tasks/lessons.md` and injects your hard rules + project DNA as context
|
|
566
|
+
| Session start — lessons | Reads `tasks/lessons.md` and injects your hard rules + project DNA as context |
|
|
367
567
|
| Session start — memory | Loads relevant past solutions from global BM25 memory |
|
|
368
568
|
| Auto chat recall | Watches every prompt, injects relevant memories before AI responds |
|
|
369
|
-
| Correction capture | Detects when you correct Claude, encodes the rule to `tasks/lessons.md`
|
|
569
|
+
| Correction capture | Detects when you correct Claude, encodes the rule to `tasks/lessons.md` |
|
|
370
570
|
| Pre-commit | Catches `console.log`, secrets, bad commit messages |
|
|
371
571
|
| Quality gate | Runs type checks and formatting after edits |
|
|
372
572
|
| Git push reminder | Prompts review before pushing |
|
|
@@ -440,8 +640,8 @@ The intent router will route you to the right one. The AI announces who's taking
|
|
|
440
640
|
|
|
441
641
|
| Source | Destination | What it does |
|
|
442
642
|
|---|---|---|
|
|
443
|
-
| `agents/` | `~/.claude/agents/` | All
|
|
444
|
-
| `skills/` | `~/.claude/skills/` | All
|
|
643
|
+
| `agents/` | `~/.claude/agents/` | All 70 subagents available globally |
|
|
644
|
+
| `skills/` | `~/.claude/skills/` | All 194 skills loadable via commands |
|
|
445
645
|
| `hooks/hooks.json` | `~/.claude/hooks/` | Automated quality gates |
|
|
446
646
|
| `rules/` | `~/.claude/rules/` | Always-on standards + intent routing |
|
|
447
647
|
| `commands/` | `~/.claude/commands/` | Slash commands (`/tdd`, `/plan`, etc.) |
|
|
@@ -534,9 +734,9 @@ npx kodelyth-ecc typescript python golang rust java kotlin php swift cpp dart ru
|
|
|
534
734
|
|
|
535
735
|
ECC is **100% local files**. No telemetry, no cloud, no account, no tracking. Everything is markdown your AI reads on every session.
|
|
536
736
|
|
|
537
|
-
- **No
|
|
538
|
-
- **No phoning home** — install scripts copy files and exit. That's it.
|
|
737
|
+
- **No phoning home** — install scripts copy files and exit. MCP server, dashboard, swarm, and replay all stay on localhost.
|
|
539
738
|
- **You own everything** — fork the repo, edit any agent, write your own.
|
|
739
|
+
- **Verifiable** — `npx kodelyth-ecc verify` checks your install against the sha256 manifest.
|
|
540
740
|
|
|
541
741
|
---
|
|
542
742
|
|
|
@@ -552,68 +752,72 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for templates, checklists, and the full K
|
|
|
552
752
|
|
|
553
753
|
## Changelog
|
|
554
754
|
|
|
555
|
-
See [CHANGELOG.md](CHANGELOG.md). v1.
|
|
755
|
+
See [CHANGELOG.md](CHANGELOG.md). v1.7.0 highlights:
|
|
556
756
|
|
|
557
|
-
- **
|
|
558
|
-
- **
|
|
559
|
-
- **
|
|
560
|
-
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
- **
|
|
757
|
+
- **MCP Server** — 16 tools, 6 prompts, 365 resources; stdio JSON-RPC; zero telemetry; works with Claude Desktop, LangGraph, AutoGen, CrewAI, OpenAI Agents SDK
|
|
758
|
+
- **Dashboard hardening** — DNS rebinding protection, shell injection fix (`execFileSync`), CSP on all responses, SSE client cap (max 10), TOCTOU fixes
|
|
759
|
+
- **Devil Mode** — 8 adversarial agents, `--pre-public` / `--pre-launch` / `--all` flags, real bash-grep patterns and remediation playbooks
|
|
760
|
+
- **336 tests** passing across 24 test files
|
|
761
|
+
|
|
762
|
+
v1.5.8 highlights:
|
|
763
|
+
|
|
764
|
+
- **zsh inline comment fix** — `npx kodelyth-ecc --target windsurf-home # comment` no longer crashes.
|
|
765
|
+
- **Dynamic install counts** — agent/skill/command counts computed from filesystem at install time.
|
|
766
|
+
- **Ruby + Elixir language rules** — coding-style, patterns, testing, security, and hooks.
|
|
767
|
+
- **`/doctor` command** — health check on your ECC install without leaving your IDE.
|
|
768
|
+
- **`/update` command** — upgrade to the latest version automatically.
|
|
769
|
+
- **5 new parallel commands** (`/security-audit`, `/pre-release`, `/debug-blitz`, `/refactor-sprint`, `/onboard`).
|
|
565
770
|
|
|
566
771
|
v1.5.2 highlights:
|
|
567
772
|
|
|
568
|
-
- **Added:** `image-architect` agent — platform-aware AI image generation
|
|
569
|
-
- **Added:** `/project-launch` — 5 founding-team agents fire in parallel
|
|
570
|
-
- **Added:** `/team-review` — 4 audit agents fire in parallel
|
|
571
|
-
- **Added:** `/lessons` command — cross-platform lesson loading
|
|
572
|
-
- **Updated:** intent routing with image generation, parallel commands, and lessons patterns
|
|
773
|
+
- **Added:** `image-architect` agent — platform-aware AI image generation (Gemini Imagen 3, DALL-E 3, fal.ai, SVG)
|
|
774
|
+
- **Added:** `/project-launch` — 5 founding-team agents fire in parallel (45 min → 10 min)
|
|
775
|
+
- **Added:** `/team-review` — 4 audit agents fire in parallel (60 min → 15 min)
|
|
776
|
+
- **Added:** `/lessons` command — cross-platform lesson loading
|
|
573
777
|
|
|
574
778
|
v1.5.1 highlights:
|
|
575
779
|
|
|
576
|
-
- **Added:** `capture-correction.js` Stop hook —
|
|
577
|
-
- **Added:** `read-lessons.js` SessionStart hook — injects
|
|
578
|
-
- **Added:** `rules/common/self-improvement-workflow.md` —
|
|
579
|
-
- **Architecture:** Three-layer compound memory — `tasks/lessons.md` (project-local) + `~/.kodelyth/memory/` (global BM25) + 61 agents (intent routing)
|
|
780
|
+
- **Added:** `capture-correction.js` Stop hook — auto-encodes corrections to `tasks/lessons.md`
|
|
781
|
+
- **Added:** `read-lessons.js` SessionStart hook — injects lessons + project DNA before first message
|
|
782
|
+
- **Added:** `rules/common/self-improvement-workflow.md` — 6-pattern self-improvement loop
|
|
580
783
|
|
|
581
784
|
v1.5.0 highlights:
|
|
582
785
|
|
|
583
|
-
- **Added:** `incident-commander` — production incident response
|
|
584
|
-
- **Added:** `load-tester` — load/stress testing with k6, Locust, Artillery
|
|
585
|
-
- **Updated:** All 9 social SVGs refreshed for v1.5.0 feature set
|
|
586
|
-
- **Updated:** Complete wiki rewrite (all 7 files) — 6-platform matrix, all 61 agents documented
|
|
587
|
-
- **Updated:** Intent routing with new incident/load patterns and 2 new chains
|
|
588
|
-
|
|
589
|
-
v1.4.1 highlights:
|
|
590
|
-
|
|
591
|
-
- **Added:** Auto chat detection — `UserPromptSubmit` hook watches every prompt, auto-injects relevant memories
|
|
592
|
-
- **Added:** Per-session repeat suppression (no memory shown twice in same session)
|
|
593
|
-
- **Added:** 9 new tests (47 total passing)
|
|
786
|
+
- **Added:** `incident-commander` — production incident response
|
|
787
|
+
- **Added:** `load-tester` — load/stress testing with k6, Locust, Artillery
|
|
594
788
|
|
|
595
789
|
v1.4.0 highlights:
|
|
596
790
|
|
|
597
791
|
- **Added:** `kodelyth-memory` — local self-learning memory (BM25, zero deps, cache-friendly)
|
|
598
|
-
- **Added:**
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
- **Honest disclosure:** "Self-learning" means smarter context retrieval, not model fine-tuning
|
|
792
|
+
- **Added:** Auto chat detection hook, SessionStart injection, Stop hook queue
|
|
793
|
+
|
|
794
|
+
---
|
|
602
795
|
|
|
603
|
-
|
|
796
|
+
## Author
|
|
604
797
|
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
798
|
+
<div align="center">
|
|
799
|
+
<img src="social/section-author.svg" alt="Shofiqul Islam — Creator of Kodelyth ECC" width="900"/>
|
|
800
|
+
</div>
|
|
801
|
+
|
|
802
|
+
**Kodelyth ECC** is designed and maintained by **Shofiqul Islam** — full-stack engineer and AI tooling builder.
|
|
803
|
+
|
|
804
|
+
| Platform | Link |
|
|
805
|
+
|---|---|
|
|
806
|
+
| GitHub | [@sifxprime](https://github.com/sifxprime) |
|
|
807
|
+
| X / Twitter | [@sifxprime](https://x.com/sifxprime) |
|
|
808
|
+
| Facebook | [facebook.com/sifxprime](https://facebook.com/sifxprime) |
|
|
809
|
+
| Instagram | [@sifxprime](https://instagram.com/sifxprime) |
|
|
810
|
+
| npm | [npmjs.com/package/kodelyth-ecc](https://www.npmjs.com/package/kodelyth-ecc) |
|
|
610
811
|
|
|
611
812
|
---
|
|
612
813
|
|
|
613
814
|
<div align="center">
|
|
614
815
|
|
|
615
|
-
|
|
816
|
+
[](https://www.npmjs.com/package/kodelyth-ecc)
|
|
817
|
+
[](https://github.com/sifxprime/kodelyth-ecc)
|
|
818
|
+
[](LICENSE)
|
|
819
|
+
[](https://nodejs.org)
|
|
616
820
|
|
|
617
|
-
|
|
821
|
+
Built with craft. Zero telemetry. All yours.
|
|
618
822
|
|
|
619
823
|
</div>
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.7.0
|