kodelyth-ecc 1.2.2 → 1.4.0
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/AGENTS.md +101 -181
- package/CHANGELOG.md +67 -0
- package/CLAUDE.md +72 -63
- package/KODELYTH.md +79 -44
- package/README.md +244 -192
- package/VERSION +1 -1
- package/agents/dependency-doctor.md +120 -0
- package/agents/env-debugger.md +154 -0
- package/agents/flake-hunter.md +142 -0
- package/agents/git-rescue.md +133 -0
- package/agents/kodelyth-memory.md +87 -0
- package/agents/release-captain.md +190 -0
- package/bin/kodelyth-ecc.js +18 -12
- package/commands/memory.md +62 -0
- package/hooks/hooks.json +26 -0
- package/hooks/memory/capture-stop.js +88 -0
- package/hooks/memory/inject-start.js +60 -0
- package/install.ps1 +28 -9
- package/install.sh +11 -97
- package/package.json +4 -2
- package/rules/common/agent-intent-routing.md +337 -0
- package/rules/common/memory-protocol.md +56 -0
- package/scripts/memory/cli.js +200 -0
- package/scripts/memory/extract.js +176 -0
- package/scripts/memory/inject.js +145 -0
- package/scripts/memory/store.js +300 -0
- package/skills/agent-handoff/SKILL.md +184 -0
- package/skills/intent-routing/SKILL.md +134 -0
- package/skills/kodelyth-memory/SKILL.md +136 -0
- package/tests/memory/store.test.js +121 -0
- package/dashboard/lib/agent-tracker.js +0 -366
- package/dashboard/lib/aggregator.js +0 -119
- package/dashboard/lib/cost-calculator.js +0 -50
- package/dashboard/lib/platform-detector.js +0 -89
- package/dashboard/lib/readers/antigravity-reader.js +0 -113
- package/dashboard/lib/readers/claude-reader.js +0 -135
- package/dashboard/lib/readers/codex-reader.js +0 -192
- package/dashboard/lib/readers/cursor-reader.js +0 -135
- package/dashboard/lib/readers/opencode-reader.js +0 -201
- package/dashboard/lib/readers/windsurf-reader.js +0 -146
- package/dashboard/package.json +0 -24
- package/dashboard/public/index.html +0 -1221
- package/dashboard/server.js +0 -119
- package/scripts/agent-tracker-hook.js +0 -81
- package/social/readme-lens.svg +0 -140
- package/social/readme-savings.svg +0 -56
package/KODELYTH.md
CHANGED
|
@@ -2,68 +2,103 @@
|
|
|
2
2
|
|
|
3
3
|
Kodelyth ECC is built and maintained by **Kodelyth** — a brand focused on making AI-powered developer tooling smarter, faster, and production-grade for real-world use at scale.
|
|
4
4
|
|
|
5
|
-
## What
|
|
5
|
+
## What's New in v1.3.0
|
|
6
6
|
|
|
7
|
-
###
|
|
7
|
+
### Removed: Lens Dashboard
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|---|---|---|
|
|
11
|
-
| `kodelyth-advisor` | v1.0.0 | Master guide — reads your intent and points you to the right tool instantly |
|
|
12
|
-
| `debug-detective` | v1.0.0 | Root-cause hunter — traces every bug through evidence, never guesses |
|
|
13
|
-
| `ux-reviewer` | v1.0.0 | UX and WCAG 2.1 AA reviewer — catches what users feel before they feel it |
|
|
14
|
-
| `api-guardian` | v1.1.0 | API contract protector — classifies every change as BREAKING/SAFE/WARN |
|
|
15
|
-
| `pair-programmer` | v1.1.0 | Pre-code thinking partner — catches wrong approaches before a line is written |
|
|
16
|
-
| `migration-guide` | v1.1.0 | Framework migration specialist — full playbooks for React, Next.js, Python, Java, Go |
|
|
9
|
+
The bundled Kodelyth Lens dashboard has been removed. It tried to track usage across Claude Code, Windsurf, Cursor, Codex, OpenCode, and Antigravity — but cloud-AI platforms (Windsurf, Antigravity, parts of Cursor) don't expose token/cost data locally, which led to inaccurate or hardcoded zeros in the dashboard.
|
|
17
10
|
|
|
18
|
-
|
|
11
|
+
The toolkit is now leaner and **does only what it does honestly**: ship rules, agents, and skills your AI loads on every session.
|
|
19
12
|
|
|
20
|
-
|
|
21
|
-
|---|---|---|
|
|
22
|
-
| `kodelyth-quickstart` | v1.0.0 | Plain-language onboarding guide — up and running in 10 minutes |
|
|
23
|
-
| `smart-debug` | v1.0.0 | Structured 5-step debugging framework — ends guess-and-check forever |
|
|
24
|
-
| `git-mastery` | v1.1.0 | Trunk-based dev, gitflow, Ship/Show/Ask, rebase, bisect, monorepos |
|
|
25
|
-
| `observability` | v1.1.0 | Structured logging, Four Golden Signals, OpenTelemetry, SLOs |
|
|
13
|
+
### Added: God-Tier Intent Routing
|
|
26
14
|
|
|
27
|
-
|
|
15
|
+
A new rule (`rules/common/agent-intent-routing.md`) auto-loads with every session and maps user intent → specialist agent across 10 priority tiers, 50+ pattern groups.
|
|
28
16
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
17
|
+
Now the user just describes their problem in plain words and the AI:
|
|
18
|
+
|
|
19
|
+
1. Announces which specialist is taking over (`→ Routing to <agent>`)
|
|
20
|
+
2. Behaves as that agent
|
|
21
|
+
3. Teaches the user the explicit form (`Tip: type "use <agent>"`)
|
|
22
|
+
|
|
23
|
+
No more memorizing 59 agent names.
|
|
34
24
|
|
|
35
|
-
###
|
|
25
|
+
### Added: 5 New Specialist Agents
|
|
36
26
|
|
|
37
|
-
|
|
27
|
+
| Agent | What it does |
|
|
28
|
+
|---|---|
|
|
29
|
+
| `dependency-doctor` | Diagnoses npm/pip/cargo/maven dep hell, CVEs, lockfile drift |
|
|
30
|
+
| `git-rescue` | Recovers broken git states without destroying history |
|
|
31
|
+
| `release-captain` | Owns the release ritual — semver, tagging, publishing, rollback |
|
|
32
|
+
| `env-debugger` | "Works on my machine" hunter — env, config, secrets, layers |
|
|
33
|
+
| `flake-hunter` | Stabilizes flaky tests — never adds blind retries |
|
|
38
34
|
|
|
39
|
-
|
|
40
|
-
- **Codex CLI** — SQLite threads database
|
|
41
|
-
- **Windsurf** — workspaceStorage and Cascade files
|
|
42
|
-
- **Cursor** — workspaceStorage and chat files
|
|
43
|
-
- **OpenCode** — local JSONL/JSON session files
|
|
44
|
-
- **Antigravity** — ECC project detection (AI sessions server-side)
|
|
35
|
+
### Added: 2 New Meta Skills
|
|
45
36
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
|
|
51
|
-
|
|
37
|
+
| Skill | What it does |
|
|
38
|
+
|---|---|
|
|
39
|
+
| `intent-routing` | Documents the routing system, priority tiers, design rules for new agents |
|
|
40
|
+
| `agent-handoff` | Standard multi-agent chain protocol with 10 documented chains |
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
## Kodelyth Exclusives — The 11 Agents That Define ECC
|
|
45
|
+
|
|
46
|
+
| Agent | Job |
|
|
47
|
+
|---|---|
|
|
48
|
+
| `kodelyth-advisor` | Master guide — picks the right tool when you don't know where to start |
|
|
49
|
+
| `pair-programmer` | The engineer who sits next to you **before** you write the code |
|
|
50
|
+
| `debug-detective` | Never guesses — traces every bug to root cause through evidence |
|
|
51
|
+
| `silent-failure-hunter` | Finds bugs that don't throw errors |
|
|
52
|
+
| `ux-reviewer` | Reviews UX behavior + WCAG 2.1 AA accessibility |
|
|
53
|
+
| `api-guardian` | Detects breaking API changes before they ship |
|
|
54
|
+
| `migration-guide` | Framework / language version upgrades, phase by phase |
|
|
55
|
+
| `dependency-doctor` | Dep hell — CVE triage, lockfile diagnosis, safe upgrade plans |
|
|
56
|
+
| `git-rescue` | Broken git states, lost commits, bad rebases — without destroying history |
|
|
57
|
+
| `release-captain` | Owns the release ritual, semver, rollback rehearsal |
|
|
58
|
+
| `env-debugger` | "Works on my machine" — environment, config, secrets layers |
|
|
59
|
+
| `flake-hunter` | Flaky test stabilization — root cause, not retries |
|
|
60
|
+
|
|
61
|
+
---
|
|
52
62
|
|
|
53
|
-
|
|
63
|
+
## Kodelyth-Authored Skills
|
|
54
64
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
65
|
+
| Skill | Description |
|
|
66
|
+
|---|---|
|
|
67
|
+
| `kodelyth-quickstart` | Plain-language onboarding guide |
|
|
68
|
+
| `smart-debug` | Structured 5-step debugging framework |
|
|
69
|
+
| `git-mastery` | Trunk-based dev, rebase, bisect, monorepos |
|
|
70
|
+
| `observability` | Structured logging, Four Golden Signals, OpenTelemetry, SLOs |
|
|
71
|
+
| `intent-routing` | How auto-routing works, priority tiers, design rules |
|
|
72
|
+
| `agent-handoff` | Standard multi-agent chain protocol |
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Hooks (15+)
|
|
77
|
+
|
|
78
|
+
| Hook | Trigger | What it does |
|
|
79
|
+
|---|---|---|
|
|
80
|
+
| `session-start` | Session boot | Loads context from previous session |
|
|
81
|
+
| `pre-commit` | Before `git commit` | Catches `console.log`, secrets, bad commit messages |
|
|
82
|
+
| `quality-gate` | After file edit | Runs type checks and formatting |
|
|
83
|
+
| `git-push-reminder` | Before `git push` | Prompts review |
|
|
84
|
+
| `config-protection` | Before linter config edit | Blocks weakening of standards |
|
|
85
|
+
| `desktop-notify` | Long task complete | macOS notification |
|
|
86
|
+
| `mcp-health-check` | Before MCP call | Validates server health |
|
|
87
|
+
| `test-reminder` | Code edit without tests | Prompts to write tests |
|
|
88
|
+
| `smart-suggest` | After response | Suggests next logical agent |
|
|
89
|
+
| `branch-name-check` | Before branch create | Blocks non-standard names |
|
|
90
|
+
|
|
91
|
+
---
|
|
60
92
|
|
|
61
93
|
## Kodelyth Philosophy
|
|
62
94
|
|
|
63
95
|
- **Smart defaults** — the system guides you to the right tool without you needing to know everything upfront
|
|
64
96
|
- **Production quality** — every enhancement is battle-tested, not theoretical
|
|
65
97
|
- **Zero friction** — good tools get out of the way and let you build
|
|
66
|
-
- **
|
|
98
|
+
- **No magic, no telemetry** — everything is markdown your AI reads on every session; nothing phones home
|
|
99
|
+
- **Honest about limits** — if we can't measure something accurately, we don't pretend (this is why Lens was removed)
|
|
100
|
+
|
|
101
|
+
---
|
|
67
102
|
|
|
68
103
|
## Credits
|
|
69
104
|
|