kodelyth-ecc 1.5.10 → 1.7.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/.github/workflows/publish.yml +19 -0
- package/AGENTS.md +1 -1
- package/CHANGELOG.md +447 -0
- package/CLAUDE.md +48 -16
- package/README.md +265 -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 +154 -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 +5 -5
- package/social/github-social-preview.svg +119 -100
- package/social/readme-hero.svg +11 -11
- 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 +159 -0
- package/tests/mcp/catalog.test.js +98 -0
- package/tests/mcp/client.test.js +109 -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 -28
- package/wiki/Hook-Reference.md +1 -1
- package/wiki/Installation-Guide.md +109 -6
- package/wiki/Platform-Support.md +239 -25
- package/wiki/Skill-Reference.md +101 -6
package/wiki/Platform-Support.md
CHANGED
|
@@ -1,31 +1,36 @@
|
|
|
1
1
|
# Platform Support
|
|
2
2
|
|
|
3
|
-
Kodelyth ECC works across
|
|
3
|
+
Kodelyth ECC works across 12 AI coding platforms. Feature availability varies by platform.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
## Capability Matrix
|
|
8
8
|
|
|
9
|
-
| Feature | Claude Code | Windsurf | Cursor | Codex CLI | Antigravity | OpenCode |
|
|
10
|
-
|
|
11
|
-
|
|
|
12
|
-
|
|
|
13
|
-
|
|
|
14
|
-
| Hooks (20+) | Yes | No | No | No | No | No |
|
|
15
|
-
|
|
|
16
|
-
|
|
|
17
|
-
|
|
|
18
|
-
|
|
|
19
|
-
|
|
|
20
|
-
|
|
|
21
|
-
|
|
22
|
-
|
|
9
|
+
| Feature | Claude Code | Windsurf | Cursor | Codex CLI | Antigravity | OpenCode | Cline | Roocode | Aider | Kimi | Gemini |
|
|
10
|
+
|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
11
|
+
| 70 Agents | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
12
|
+
| 194 Skills | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
13
|
+
| 97 Commands | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
14
|
+
| Hooks (20+) | Yes | No | No | No | No | No | No | No | No | No | No |
|
|
15
|
+
| MCP Server | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
16
|
+
| Dashboard | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
17
|
+
| Memory inject | Yes (auto) | Manual | Manual | Manual | Manual | Manual | Manual | Manual | Manual | Manual | Manual |
|
|
18
|
+
| Compound learning | Yes (auto) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) |
|
|
19
|
+
| Semantic routing | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
20
|
+
| Devil-mode | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
21
|
+
| `/project-launch` | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
22
|
+
| `/team-review` | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
23
|
+
| `/security-audit` | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
24
|
+
| `/devil-mode` | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
25
|
+
| `/lessons` | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
|
|
26
|
+
|
|
27
|
+
**Hooks** are a Claude Code feature — they require the Claude Code hook system (`~/.claude/settings.json`). All other features work on every platform through CLAUDE.md or project-local config files. **MCP Server** and **Dashboard** are available on all platforms (v1.7.0+).
|
|
23
28
|
|
|
24
29
|
---
|
|
25
30
|
|
|
26
31
|
## Claude Code
|
|
27
32
|
|
|
28
|
-
The full ECC experience. All features active.
|
|
33
|
+
The full ECC experience. All features active. Auto-injected memory and lessons.
|
|
29
34
|
|
|
30
35
|
**Install:**
|
|
31
36
|
```bash
|
|
@@ -35,10 +40,10 @@ npx kodelyth-ecc
|
|
|
35
40
|
**File layout:**
|
|
36
41
|
```
|
|
37
42
|
~/.claude/
|
|
38
|
-
├── agents/ →
|
|
39
|
-
├── skills/ →
|
|
40
|
-
├── commands/ →
|
|
41
|
-
├── rules/ →
|
|
43
|
+
├── agents/ → 70 specialist agents
|
|
44
|
+
├── skills/ → 194 skills
|
|
45
|
+
├── commands/ → 97 slash commands
|
|
46
|
+
├── rules/ → 14 always-on rules
|
|
42
47
|
└── settings.json → hooks wired here
|
|
43
48
|
```
|
|
44
49
|
|
|
@@ -50,13 +55,17 @@ npx kodelyth-ecc
|
|
|
50
55
|
- Before every push: `branch-check`
|
|
51
56
|
- Session end: `capture-correction` + `memory-capture` + `desktop-notify` + `cost-tracker`
|
|
52
57
|
|
|
58
|
+
**Safety hooks (v1.7.0):**
|
|
59
|
+
- `prompt-injection-guard` — Blocks attempted prompt injection
|
|
60
|
+
- `token-budget-enforcer` — Warns when approaching token limit
|
|
61
|
+
|
|
53
62
|
**Compound learning:** fully automatic — corrections are captured at session end and injected at session start without any user action.
|
|
54
63
|
|
|
55
64
|
---
|
|
56
65
|
|
|
57
|
-
## Windsurf
|
|
66
|
+
## Windsurf (Project)
|
|
58
67
|
|
|
59
|
-
Agents, skills, and commands work. No hooks.
|
|
68
|
+
Agents, skills, and commands work. No hooks. Project-local installation.
|
|
60
69
|
|
|
61
70
|
**Install:**
|
|
62
71
|
```bash
|
|
@@ -76,7 +85,29 @@ npx kodelyth-ecc --target windsurf-project
|
|
|
76
85
|
|
|
77
86
|
---
|
|
78
87
|
|
|
79
|
-
##
|
|
88
|
+
## Windsurf (Home)
|
|
89
|
+
|
|
90
|
+
Global installation for all Windsurf projects.
|
|
91
|
+
|
|
92
|
+
**Install:**
|
|
93
|
+
```bash
|
|
94
|
+
npx kodelyth-ecc --target windsurf-home
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
**File layout:**
|
|
98
|
+
```
|
|
99
|
+
~/.windsurf/
|
|
100
|
+
├── agents/
|
|
101
|
+
├── skills/
|
|
102
|
+
├── commands/
|
|
103
|
+
└── rules/
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
**Lessons:** Run `/lessons` per-project since lessons are project-specific.
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## Cursor (Project)
|
|
80
111
|
|
|
81
112
|
Agents, skills, and commands work. No hooks.
|
|
82
113
|
|
|
@@ -118,11 +149,17 @@ npx kodelyth-ecc --target codex-home
|
|
|
118
149
|
|
|
119
150
|
**Image generation:** `image-architect` on Codex CLI routes to DALL-E 3 automatically.
|
|
120
151
|
|
|
152
|
+
**Command-line usage:**
|
|
153
|
+
```bash
|
|
154
|
+
codex "use debug-detective" < error.log
|
|
155
|
+
codex "use security-reviewer" < app.js
|
|
156
|
+
```
|
|
157
|
+
|
|
121
158
|
---
|
|
122
159
|
|
|
123
160
|
## Google Antigravity
|
|
124
161
|
|
|
125
|
-
Full agents and skills. `image-architect` uses Gemini Imagen 3 natively (no API key required).
|
|
162
|
+
Full agents and skills. `image-architect` uses Gemini Imagen 3 natively (no API key required). Deep reasoning models available.
|
|
126
163
|
|
|
127
164
|
**Install:**
|
|
128
165
|
```bash
|
|
@@ -171,6 +208,130 @@ npx kodelyth-ecc --target opencode
|
|
|
171
208
|
|
|
172
209
|
---
|
|
173
210
|
|
|
211
|
+
## Cline (VS Code Extension)
|
|
212
|
+
|
|
213
|
+
VS Code integration via Cline extension.
|
|
214
|
+
|
|
215
|
+
**Install:**
|
|
216
|
+
```bash
|
|
217
|
+
npx kodelyth-ecc --target cline
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
**File layout:**
|
|
221
|
+
```
|
|
222
|
+
.cline/
|
|
223
|
+
├── agents/
|
|
224
|
+
├── skills/
|
|
225
|
+
├── commands/
|
|
226
|
+
└── rules/
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
**Native VS Code integration:** Commands and agents accessible within the VS Code editor. Full keyboard shortcut support.
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
233
|
+
## Roocode (Web IDE)
|
|
234
|
+
|
|
235
|
+
Web-based IDE integration.
|
|
236
|
+
|
|
237
|
+
**Install:**
|
|
238
|
+
```bash
|
|
239
|
+
npx kodelyth-ecc --target roocode
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
**File layout:**
|
|
243
|
+
```
|
|
244
|
+
.roocode/
|
|
245
|
+
├── agents/
|
|
246
|
+
├── skills/
|
|
247
|
+
├── commands/
|
|
248
|
+
└── rules/
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
**Browser-based:** All features work in the web IDE. Memory and lessons stored in browser local storage.
|
|
252
|
+
|
|
253
|
+
---
|
|
254
|
+
|
|
255
|
+
## Aider (Git-Native)
|
|
256
|
+
|
|
257
|
+
Aider-specific integration with full git awareness.
|
|
258
|
+
|
|
259
|
+
**Install:**
|
|
260
|
+
```bash
|
|
261
|
+
npx kodelyth-ecc --target aider
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
**File layout:**
|
|
265
|
+
```
|
|
266
|
+
.aider/
|
|
267
|
+
├── agents/
|
|
268
|
+
├── skills/
|
|
269
|
+
├── commands/
|
|
270
|
+
└── rules/
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
**Git-aware:** Aider's native git integration automatically applies ECC's git-rescue and release-captain agents.
|
|
274
|
+
|
|
275
|
+
---
|
|
276
|
+
|
|
277
|
+
## Kimi (Chinese Platform)
|
|
278
|
+
|
|
279
|
+
Chinese AI platform support.
|
|
280
|
+
|
|
281
|
+
**Install:**
|
|
282
|
+
```bash
|
|
283
|
+
npx kodelyth-ecc --target kimi
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
**File layout:**
|
|
287
|
+
```
|
|
288
|
+
.kimi/
|
|
289
|
+
├── agents/
|
|
290
|
+
├── skills/
|
|
291
|
+
├── commands/
|
|
292
|
+
└── rules/
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
**Chinese documentation:** Agents and skills auto-translate to Chinese UI labels.
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
## Gemini (Project and Home)
|
|
300
|
+
|
|
301
|
+
Dual-entry support for Gemini projects and global installation.
|
|
302
|
+
|
|
303
|
+
**Install (project-local):**
|
|
304
|
+
```bash
|
|
305
|
+
npx kodelyth-ecc --target gemini-project
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
**Install (global):**
|
|
309
|
+
```bash
|
|
310
|
+
npx kodelyth-ecc --target gemini-home
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
**File layout (project):**
|
|
314
|
+
```
|
|
315
|
+
.gemini/
|
|
316
|
+
├── agents/
|
|
317
|
+
├── skills/
|
|
318
|
+
├── commands/
|
|
319
|
+
└── rules/
|
|
320
|
+
```
|
|
321
|
+
|
|
322
|
+
**File layout (home):**
|
|
323
|
+
```
|
|
324
|
+
~/.gemini/
|
|
325
|
+
├── agents/
|
|
326
|
+
├── skills/
|
|
327
|
+
├── commands/
|
|
328
|
+
└── rules/
|
|
329
|
+
```
|
|
330
|
+
|
|
331
|
+
**Image generation:** `image-architect` routes to Gemini Imagen 3.
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
174
335
|
## Lessons on Non-Claude-Code Platforms
|
|
175
336
|
|
|
176
337
|
On all platforms except Claude Code, the compound learning system requires one manual step per session:
|
|
@@ -183,16 +344,41 @@ Claude Code users: this happens automatically via the `read-lessons.js` SessionS
|
|
|
183
344
|
|
|
184
345
|
---
|
|
185
346
|
|
|
347
|
+
## MCP Server Availability (v1.7.0)
|
|
348
|
+
|
|
349
|
+
All platforms can run the standalone MCP server:
|
|
350
|
+
|
|
351
|
+
```bash
|
|
352
|
+
npx kodelyth-ecc mcp --port 5173
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
This provides 16 tools and 6 prompts accessible from any MCP-compatible client.
|
|
356
|
+
|
|
357
|
+
---
|
|
358
|
+
|
|
359
|
+
## Dashboard Availability (v1.7.0)
|
|
360
|
+
|
|
361
|
+
All platforms can run the standalone dashboard:
|
|
362
|
+
|
|
363
|
+
```bash
|
|
364
|
+
npx kodelyth-ecc dashboard --port 5173
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
Five tabs: Overview, Memory, Evolve, Catalog, Sessions. Zero analytics, localhost only.
|
|
368
|
+
|
|
369
|
+
---
|
|
370
|
+
|
|
186
371
|
## image-architect Platform Routing
|
|
187
372
|
|
|
188
373
|
| Platform | Image model used |
|
|
189
374
|
|---|---|
|
|
190
375
|
| Antigravity | Gemini Imagen 3 (native, no key) |
|
|
191
376
|
| Codex CLI | DALL-E 3 (native, no key) |
|
|
377
|
+
| Gemini | Gemini Imagen 3 (native, no key) |
|
|
192
378
|
| Claude Code | fal.ai MCP → SVG fallback |
|
|
193
379
|
| Windsurf | Native model gen → fal.ai → SVG fallback |
|
|
194
380
|
| Cursor | Native model gen → fal.ai → SVG fallback |
|
|
195
|
-
|
|
|
381
|
+
| Others (Cline, Roocode, Aider, Kimi) | SVG fallback |
|
|
196
382
|
|
|
197
383
|
---
|
|
198
384
|
|
|
@@ -205,3 +391,31 @@ Claude Code users: this happens automatically via the `read-lessons.js` SessionS
|
|
|
205
391
|
| Windows | Yes | `npx` or `./install.ps1` |
|
|
206
392
|
|
|
207
393
|
All Node.js-based scripts are cross-platform. The `desktop-notify` hook (macOS notification) is macOS-only and silently skips on other platforms.
|
|
394
|
+
|
|
395
|
+
---
|
|
396
|
+
|
|
397
|
+
## Platform-Specific Notes
|
|
398
|
+
|
|
399
|
+
**Claude Code:** Best default choice. All features. Most stable. Auto-injected learning.
|
|
400
|
+
|
|
401
|
+
**Windsurf / Cursor:** Full agent support. Requires manual `/lessons` per session. No hooks, but can wire post-save formatters manually.
|
|
402
|
+
|
|
403
|
+
**Antigravity:** Deep reasoning models. Gemini Imagen 3 image generation. Best for complex architecture tasks.
|
|
404
|
+
|
|
405
|
+
**Codex CLI / Aider:** CLI-first workflows. Full agent support. Good for automation and git-aware changes.
|
|
406
|
+
|
|
407
|
+
**Cline / Roocode / Kimi:** Emerging platforms. Full agent support confirmed. Dashboard and MCP server available.
|
|
408
|
+
|
|
409
|
+
---
|
|
410
|
+
|
|
411
|
+
## Choosing a Platform
|
|
412
|
+
|
|
413
|
+
| Your workflow | Best platform |
|
|
414
|
+
|---|---|
|
|
415
|
+
| Individual contributor, Claude user | Claude Code |
|
|
416
|
+
| Web dev, rapid iteration, many projects | Windsurf |
|
|
417
|
+
| Enterprise, many languages, deep reasoning | Antigravity |
|
|
418
|
+
| Git-native workflow, automation | Aider |
|
|
419
|
+
| VS Code power user | Cline |
|
|
420
|
+
| Web-only environment | Roocode |
|
|
421
|
+
| Complex architecture, long sessions | Claude Code + Opus 4.6 |
|
package/wiki/Skill-Reference.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Skill Reference
|
|
2
2
|
|
|
3
|
-
Skills are domain knowledge and workflow definitions loaded into your session with a slash command.
|
|
3
|
+
Skills are domain knowledge and workflow definitions loaded into your session with a slash command. 194 skills total.
|
|
4
4
|
|
|
5
5
|
Skills provide deep, actionable guidance — patterns, checklists, code templates, anti-patterns — that agents draw on when they are active. Rules define *what* to do; skills define *how* to do it.
|
|
6
6
|
|
|
@@ -39,7 +39,8 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
39
39
|
| Skill | Command | What it provides |
|
|
40
40
|
|---|---|---|
|
|
41
41
|
| Memory Protocol | `/memory` | BM25 recall workflow, capture triggers, review-pending flow |
|
|
42
|
-
|
|
|
42
|
+
| Memory Evolve | `/memory-evolve` | Self-improving memory analysis, pattern extraction (v1.7.0) |
|
|
43
|
+
| Lessons | `/lessons` | Load/save/manage `tasks/lessons.md` on all 12 platforms |
|
|
43
44
|
| Configure ECC | `/configure-ecc` | Customize agents, hooks, and rules for your project |
|
|
44
45
|
| Quickstart | `/kodelyth-quickstart` | 5-minute tour of the entire toolkit |
|
|
45
46
|
|
|
@@ -53,6 +54,8 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
53
54
|
|---|---|
|
|
54
55
|
| Coding standards | `/coding-standards` |
|
|
55
56
|
| Bun runtime | `/bun-runtime` |
|
|
57
|
+
| Next.js patterns | `/nextjs-patterns` |
|
|
58
|
+
| React patterns | `/react-patterns` |
|
|
56
59
|
|
|
57
60
|
### Rust
|
|
58
61
|
|
|
@@ -60,6 +63,7 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
60
63
|
|---|---|
|
|
61
64
|
| Rust patterns | `/rust-patterns` |
|
|
62
65
|
| Rust testing | `/rust-testing` |
|
|
66
|
+
| Ownership & lifetimes | `/rust-ownership` |
|
|
63
67
|
|
|
64
68
|
### Java / Spring Boot
|
|
65
69
|
|
|
@@ -80,6 +84,22 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
80
84
|
| Swift protocol + DI testing | `/swift-protocol-di-testing` |
|
|
81
85
|
| Compose multiplatform | `/compose-multiplatform-patterns` |
|
|
82
86
|
|
|
87
|
+
### Python
|
|
88
|
+
|
|
89
|
+
| Skill | Command |
|
|
90
|
+
|---|---|
|
|
91
|
+
| Python async patterns | `/python-async-patterns` |
|
|
92
|
+
| FastAPI patterns | `/fastapi-patterns` |
|
|
93
|
+
| Django TDD | `/django-tdd` |
|
|
94
|
+
|
|
95
|
+
### Go
|
|
96
|
+
|
|
97
|
+
| Skill | Command |
|
|
98
|
+
|---|---|
|
|
99
|
+
| Go idiomatic patterns | `/go-patterns` |
|
|
100
|
+
| Go error handling | `/go-error-handling` |
|
|
101
|
+
| Go concurrency | `/go-concurrency` |
|
|
102
|
+
|
|
83
103
|
---
|
|
84
104
|
|
|
85
105
|
## Architecture & Design Skills
|
|
@@ -93,6 +113,8 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
93
113
|
| AI-First Engineering | `/ai-first-engineering` | Designing systems with AI in the loop |
|
|
94
114
|
| Agentic Engineering | `/agentic-engineering` | Patterns for multi-agent orchestration |
|
|
95
115
|
| Backend Patterns | `/backend-patterns` | Service architecture, data layer, API patterns |
|
|
116
|
+
| Microservices | `/microservices` | Distributed system patterns, service mesh, async messaging |
|
|
117
|
+
| Domain-Driven Design | `/ddd` | Bounded contexts, aggregates, ubiquitous language |
|
|
96
118
|
|
|
97
119
|
---
|
|
98
120
|
|
|
@@ -105,6 +127,8 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
105
127
|
| AI Regression Testing | `/ai-regression-testing` | Preventing AI-introduced regressions |
|
|
106
128
|
| Benchmark | `/benchmark` | Performance benchmarking patterns |
|
|
107
129
|
| Verification Loop | `/verification-loop` | Multi-step verification before marking work done |
|
|
130
|
+
| Load Testing | `/load-testing` | k6, Locust, Artillery setup and patterns |
|
|
131
|
+
| E2E Testing Strategy | `/e2e-strategy` | End-to-end test planning and execution |
|
|
108
132
|
|
|
109
133
|
---
|
|
110
134
|
|
|
@@ -117,6 +141,9 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
117
141
|
| Security Bounty Hunter | `/security-bounty-hunter` | Structured vuln discovery process |
|
|
118
142
|
| Safety Guard | `/safety-guard` | Guardrail patterns for AI-generated code |
|
|
119
143
|
| Spring Boot Security | `/springboot-security` | Spring-specific auth, CSRF, secrets |
|
|
144
|
+
| Secrets Management | `/secrets-management` | `.env`, vaults, rotation, credential handling |
|
|
145
|
+
| Supply Chain Security | `/supply-chain-security` | SBOM, SLSA, artifact integrity (v1.7.0) |
|
|
146
|
+
| Zero Trust Architecture | `/zero-trust` | Implementation patterns for zero-trust systems |
|
|
120
147
|
|
|
121
148
|
---
|
|
122
149
|
|
|
@@ -128,13 +155,18 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
128
155
|
| Canary Watch | `/canary-watch` | Canary deployment monitoring patterns |
|
|
129
156
|
| Automation Audit Ops | `/automation-audit-ops` | Audit trail for automated operations |
|
|
130
157
|
| Continuous Agent Loop | `/continuous-agent-loop` | Long-running agent patterns |
|
|
158
|
+
| Docker & Containers | `/docker-patterns` | Docker, Kubernetes, container security |
|
|
159
|
+
| CI/CD Pipelines | `/ci-cd-patterns` | GitHub Actions, GitLab CI, CircleCI setup |
|
|
160
|
+
| Infrastructure as Code | `/iac-patterns` | Terraform, CloudFormation, Pulumi |
|
|
161
|
+
| Observability | `/observability` | Logging, metrics, tracing, SLOs, OpenTelemetry |
|
|
131
162
|
|
|
132
163
|
---
|
|
133
164
|
|
|
134
|
-
##
|
|
165
|
+
## Swarm & Orchestration Skills
|
|
135
166
|
|
|
136
167
|
| Skill | Command | What it provides |
|
|
137
168
|
|---|---|---|
|
|
169
|
+
| Swarm Orchestrator | `/swarm-orchestrator` | Multi-agent parallel execution and coordination (v1.7.0) |
|
|
138
170
|
| Agent Eval | `/agent-eval` | Evaluating agent output quality |
|
|
139
171
|
| Agent Handoff | `/agent-handoff` | Multi-agent chain handoff protocols |
|
|
140
172
|
| Agent Harness Construction | `/agent-harness-construction` | Building agent test harnesses |
|
|
@@ -154,6 +186,19 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
154
186
|
| API Connector Builder | `/api-connector-builder` | Building typed API connectors |
|
|
155
187
|
| Claude API | `/claude-api` | Anthropic API patterns, tool use, streaming |
|
|
156
188
|
| Agent Payment (x402) | `/agent-payment-x402` | Monetizing agents with x402 protocol |
|
|
189
|
+
| GraphQL Patterns | `/graphql-patterns` | Schema design, resolver patterns, federation |
|
|
190
|
+
| WebSocket Patterns | `/websocket-patterns` | Real-time communication, state sync |
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
## Cost & Model Routing (v1.7.0)
|
|
195
|
+
|
|
196
|
+
| Skill | Command | What it provides |
|
|
197
|
+
|---|---|---|
|
|
198
|
+
| Cost-Aware Routing | `/cost-aware-routing` | Match tasks to optimal model (Haiku/Sonnet/Opus) |
|
|
199
|
+
| Context Budget | `/context-budget` | Managing context window efficiently |
|
|
200
|
+
| Token Budget Advisor | `/token-budget-advisor` | Cost optimization guidance |
|
|
201
|
+
| Model Selection | `/model-selection` | When to use which Claude or Gemini model |
|
|
157
202
|
|
|
158
203
|
---
|
|
159
204
|
|
|
@@ -162,26 +207,45 @@ Type the skill name with a `/` prefix. Skills load instantly and activate for th
|
|
|
162
207
|
| Skill | Command | Domain |
|
|
163
208
|
|---|---|---|
|
|
164
209
|
| ClickHouse IO | `/clickhouse-io` | Analytics database patterns |
|
|
165
|
-
| Context Budget | `/context-budget` | Managing context window efficiently |
|
|
166
210
|
| Research Ops | `/research-ops` | Structured research workflows |
|
|
167
211
|
| Rules Distill | `/rules-distill` | Extracting rules from codebase patterns |
|
|
168
212
|
| Skill Stocktake | `/skill-stocktake` | Auditing which skills are active |
|
|
169
213
|
| Strategic Compact | `/strategic-compact` | Condensing context before large tasks |
|
|
170
|
-
| Token Budget Advisor | `/token-budget-advisor` | Cost optimization guidance |
|
|
171
214
|
| Search First | `/search-first` | Always-search-before-implement workflow |
|
|
172
215
|
| SEO | `/seo` | Technical SEO, meta, schema, Core Web Vitals |
|
|
173
216
|
| Remotion Video | `/remotion-video-creation` | Programmatic video patterns |
|
|
174
217
|
|
|
175
218
|
---
|
|
176
219
|
|
|
220
|
+
## Devil-Mode Security Skills (v1.7.0)
|
|
221
|
+
|
|
222
|
+
| Skill | Command | What it provides |
|
|
223
|
+
|---|---|---|
|
|
224
|
+
| Prompt Injection Hunting | `/prompt-injection-hunting` | Finding AI injection vectors |
|
|
225
|
+
| Supply Chain Auditing | `/supply-chain-auditing` | Dependency vulnerability analysis |
|
|
226
|
+
| Secret Hunting | `/secret-hunting` | Hardcoded credential detection |
|
|
227
|
+
| License Compliance | `/license-compliance` | GPL and license violation hunting |
|
|
228
|
+
| Jailbreak Testing | `/jailbreak-testing` | Safety bypass testing techniques |
|
|
229
|
+
| Code Theft Detection | `/code-theft-detection` | Exfiltration and unauthorized access paths |
|
|
230
|
+
| Backdoor Hunting | `/backdoor-hunting` | Identifying inserted malicious code |
|
|
231
|
+
| Chaos Engineering | `/chaos-engineering` | Failure mode and resilience testing |
|
|
232
|
+
|
|
233
|
+
---
|
|
234
|
+
|
|
177
235
|
## Parallel Commands That Fire Multiple Skills
|
|
178
236
|
|
|
179
237
|
| Command | Skills activated |
|
|
180
238
|
|---|---|
|
|
181
239
|
| `/project-launch` | architect + pair-programmer + security-reviewer + tdd-guide + ux-reviewer |
|
|
182
240
|
| `/team-review` | code-reviewer + security-reviewer + performance-optimizer + api-guardian |
|
|
241
|
+
| `/security-audit` | security-reviewer + dependency-doctor + api-guardian |
|
|
242
|
+
| `/debug-blitz` | debug-detective + silent-failure-hunter + env-debugger |
|
|
243
|
+
| `/refactor-sprint` | refactor-cleaner + code-simplifier + type-design-analyzer + tdd-guide |
|
|
244
|
+
| `/pre-release` | release-captain + security-reviewer + code-reviewer |
|
|
245
|
+
| `/onboard` | code-explorer + architect + doc-updater |
|
|
246
|
+
| `/devil-mode` | prompt-injection-hunter + supply-chain-auditor + secret-hunter + license-violation-finder (or all 8 with `--all`) |
|
|
183
247
|
|
|
184
|
-
These are not skill loads — they fire 4-
|
|
248
|
+
These are not skill loads — they fire 4-8 specialist agents in parallel and return all results at once.
|
|
185
249
|
|
|
186
250
|
---
|
|
187
251
|
|
|
@@ -193,3 +257,34 @@ If you are unsure what command to use, just describe the problem. The semantic r
|
|
|
193
257
|
You: "How should I approach debugging this?"
|
|
194
258
|
AI: → Loading /smart-debug (debugging workflow signal)
|
|
195
259
|
```
|
|
260
|
+
|
|
261
|
+
---
|
|
262
|
+
|
|
263
|
+
## Skill Categories
|
|
264
|
+
|
|
265
|
+
**Quick overview by category:**
|
|
266
|
+
|
|
267
|
+
- **9 workflow skills** — core debugging, testing, review, APIs, security
|
|
268
|
+
- **27 language/framework skills** — TypeScript, Rust, Java, Python, Go, Swift, Kotlin, and more
|
|
269
|
+
- **9 architecture skills** — design patterns, ADRs, microservices, DDD
|
|
270
|
+
- **7 testing skills** — TDD, E2E, benchmarking, flake prevention
|
|
271
|
+
- **8 security skills** — OWASP, bounty hunting, supply chain, zero trust
|
|
272
|
+
- **8 DevOps skills** — containers, CI/CD, IaC, observability
|
|
273
|
+
- **9 swarm/orchestration skills** — multi-agent coordination, autonomy
|
|
274
|
+
- **6 API skills** — REST, GraphQL, WebSockets, payment
|
|
275
|
+
- **4 cost/routing skills** — model selection, token budgets (v1.7.0)
|
|
276
|
+
- **8 specialized skills** — ClickHouse, SEO, video, research
|
|
277
|
+
- **8 devil-mode security skills** — red-team, penetration testing (v1.7.0)
|
|
278
|
+
|
|
279
|
+
**Total: 194 skills**
|
|
280
|
+
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
## Installing All Skills
|
|
284
|
+
|
|
285
|
+
```bash
|
|
286
|
+
# Download and cache all 194 skills locally
|
|
287
|
+
npx kodelyth-ecc --profile full
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
Or load skills on-demand as needed.
|