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.
Files changed (273) hide show
  1. package/.github/workflows/publish.yml +19 -0
  2. package/AGENTS.md +1 -1
  3. package/CHANGELOG.md +475 -0
  4. package/CLAUDE.md +48 -16
  5. package/README.md +285 -81
  6. package/VERSION +1 -1
  7. package/actions/ecc-review/README.md +243 -0
  8. package/actions/ecc-review/action.yml +158 -0
  9. package/actions/ecc-review/post-comment.js +171 -0
  10. package/actions/ecc-review/run-review.js +285 -0
  11. package/agents/backdoor-hunter.md +260 -0
  12. package/agents/chaos-engineer.md +251 -0
  13. package/agents/code-stealer-detector.md +228 -0
  14. package/agents/jailbreak-tester.md +222 -0
  15. package/agents/license-violation-finder.md +212 -0
  16. package/agents/prompt-injection-hunter.md +126 -0
  17. package/agents/secret-hunter.md +209 -0
  18. package/agents/supply-chain-auditor.md +195 -0
  19. package/bin/kodelyth-ecc.js +875 -1
  20. package/bundles/enterprise.md +172 -0
  21. package/bundles/indie-hacker.md +106 -0
  22. package/bundles/red-team.md +138 -0
  23. package/cat +0 -0
  24. package/commands/dashboard.md +67 -0
  25. package/commands/devil-mode.md +121 -0
  26. package/commands/memory-evolve.md +71 -0
  27. package/commands/replay.md +61 -0
  28. package/commands/route-model.md +48 -0
  29. package/commands/swarm.md +68 -0
  30. package/commands/verify-supply-chain.md +59 -0
  31. package/docs/dashboard.md +211 -0
  32. package/docs/evolve.md +303 -0
  33. package/docs/mcp-clients.md +167 -0
  34. package/docs/mcp.md +178 -0
  35. package/docs/replay.md +244 -0
  36. package/docs/supply-chain.md +207 -0
  37. package/docs/swarm.md +243 -0
  38. package/hooks/hooks.json +52 -0
  39. package/hooks/memory/auto-recall.js +29 -1
  40. package/hooks/safety/README.md +124 -0
  41. package/hooks/safety/lib/patterns.js +179 -0
  42. package/hooks/safety/prompt-injection-guard.js +179 -0
  43. package/hooks/safety/token-budget.js +229 -0
  44. package/install.ps1 +199 -2
  45. package/install.sh +285 -3
  46. package/package.json +30 -4
  47. package/rules/common/agent-intent-routing.md +182 -0
  48. package/rules/common/cost-aware-model-routing.md +152 -0
  49. package/scripts/dashboard/data.js +353 -0
  50. package/scripts/dashboard/server.js +324 -0
  51. package/scripts/dashboard/static/index.html +645 -0
  52. package/scripts/evolve/analyze.js +303 -0
  53. package/scripts/evolve/proposals.js +162 -0
  54. package/scripts/evolve/stats.js +219 -0
  55. package/scripts/mcp/catalog.js +244 -0
  56. package/scripts/mcp/client.js +181 -0
  57. package/scripts/mcp/prompts.js +133 -0
  58. package/scripts/mcp/resources.js +94 -0
  59. package/scripts/mcp/server.js +153 -0
  60. package/scripts/mcp/tools.js +465 -0
  61. package/scripts/replay/bundle.js +191 -0
  62. package/scripts/replay/replay.js +107 -0
  63. package/scripts/router/classify.js +232 -0
  64. package/scripts/supply-chain/manifest.js +155 -0
  65. package/scripts/supply-chain/sbom.js +202 -0
  66. package/scripts/supply-chain/verify.js +102 -0
  67. package/scripts/swarm/build-plan.js +193 -0
  68. package/skills/cost-aware-model-routing/SKILL.md +153 -0
  69. package/skills/kodelyth-quickstart/SKILL.md +7 -0
  70. package/skills/observability-dashboard/SKILL.md +119 -0
  71. package/skills/self-evolving-memory/SKILL.md +175 -0
  72. package/skills/session-replay/SKILL.md +199 -0
  73. package/skills/supply-chain-verification/SKILL.md +201 -0
  74. package/skills/swarm-orchestrator/SKILL.md +177 -0
  75. package/social/card-install.svg +1 -1
  76. package/social/facebook-group/POST.md +121 -0
  77. package/social/facebook-group/fb-1-3am-debug.png +0 -0
  78. package/social/facebook-group/fb-1-3am-debug.svg +97 -0
  79. package/social/facebook-group/fb-2-cpu-upgrade.png +0 -0
  80. package/social/facebook-group/fb-2-cpu-upgrade.svg +132 -0
  81. package/social/facebook-group/fb-3-before-after.png +0 -0
  82. package/social/facebook-group/fb-3-before-after.svg +94 -0
  83. package/social/facebook-v150.svg +6 -6
  84. package/social/github-social-preview.svg +119 -100
  85. package/social/readme-hero.svg +12 -12
  86. package/social/section-agents.svg +57 -0
  87. package/social/section-author.svg +54 -0
  88. package/social/section-dashboard.svg +59 -0
  89. package/social/section-devil.svg +54 -0
  90. package/social/section-hooks.svg +51 -0
  91. package/social/section-install.svg +42 -0
  92. package/social/section-learning.svg +52 -0
  93. package/social/section-mcp.svg +46 -0
  94. package/social/section-memory.svg +57 -0
  95. package/social/section-parallel.svg +72 -0
  96. package/social/section-routing.svg +51 -0
  97. package/social/x-card-agents-grid.svg +6 -6
  98. package/tests/dashboard/data.test.js +235 -0
  99. package/tests/dashboard/server.test.js +240 -0
  100. package/tests/evolve/analyze.test.js +169 -0
  101. package/tests/evolve/proposals.test.js +173 -0
  102. package/tests/evolve/stats.test.js +167 -0
  103. package/tests/mcp/catalog.test.js +98 -0
  104. package/tests/mcp/client.test.js +113 -0
  105. package/tests/mcp/resources-prompts.test.js +70 -0
  106. package/tests/mcp/tools.test.js +159 -0
  107. package/tests/replay/bundle.test.js +181 -0
  108. package/tests/replay/replay.test.js +131 -0
  109. package/tests/router/classify.test.js +164 -0
  110. package/tests/safety/patterns.test.js +94 -0
  111. package/tests/safety/prompt-injection-guard.test.js +111 -0
  112. package/tests/safety/token-budget.test.js +119 -0
  113. package/tests/supply-chain/manifest.test.js +147 -0
  114. package/tests/supply-chain/sbom.test.js +170 -0
  115. package/tests/supply-chain/verify.test.js +146 -0
  116. package/tests/swarm/build-plan.test.js +188 -0
  117. package/wiki/Agent-Reference.md +58 -7
  118. package/wiki/FAQ.md +204 -7
  119. package/wiki/Home.md +104 -29
  120. package/wiki/Hook-Reference.md +1 -1
  121. package/wiki/Installation-Guide.md +109 -6
  122. package/wiki/Platform-Support.md +189 -72
  123. package/wiki/Skill-Reference.md +101 -6
  124. package/.agent/rules/README.md +0 -108
  125. package/.agent/rules/agents.md +0 -94
  126. package/.agent/rules/code-review.md +0 -124
  127. package/.agent/rules/coding-style.md +0 -122
  128. package/.agent/rules/design-quality.md +0 -63
  129. package/.agent/rules/development-workflow.md +0 -44
  130. package/.agent/rules/git-mastery.md +0 -366
  131. package/.agent/rules/git-workflow.md +0 -24
  132. package/.agent/rules/hooks.md +0 -25
  133. package/.agent/rules/kodelyth-always-on.md +0 -63
  134. package/.agent/rules/kodelyth-quickstart.md +0 -207
  135. package/.agent/rules/observability.md +0 -390
  136. package/.agent/rules/patterns.md +0 -50
  137. package/.agent/rules/performance.md +0 -178
  138. package/.agent/rules/security.md +0 -58
  139. package/.agent/rules/smart-debug.md +0 -241
  140. package/.agent/rules/soul.md +0 -32
  141. package/.agent/rules/testing.md +0 -46
  142. package/.agent/skills/api-guardian.md +0 -279
  143. package/.agent/skills/architect.md +0 -211
  144. package/.agent/skills/build-error-resolver.md +0 -114
  145. package/.agent/skills/chief-of-staff.md +0 -151
  146. package/.agent/skills/code-architect.md +0 -71
  147. package/.agent/skills/code-explorer.md +0 -69
  148. package/.agent/skills/code-reviewer.md +0 -237
  149. package/.agent/skills/code-simplifier.md +0 -47
  150. package/.agent/skills/comment-analyzer.md +0 -45
  151. package/.agent/skills/conversation-analyzer.md +0 -52
  152. package/.agent/skills/cpp-build-resolver.md +0 -90
  153. package/.agent/skills/cpp-reviewer.md +0 -72
  154. package/.agent/skills/csharp-reviewer.md +0 -101
  155. package/.agent/skills/dart-build-resolver.md +0 -201
  156. package/.agent/skills/database-reviewer.md +0 -91
  157. package/.agent/skills/debug-detective.md +0 -409
  158. package/.agent/skills/doc-updater.md +0 -107
  159. package/.agent/skills/docs-lookup.md +0 -68
  160. package/.agent/skills/e2e-runner.md +0 -107
  161. package/.agent/skills/flutter-reviewer.md +0 -243
  162. package/.agent/skills/gan-evaluator.md +0 -209
  163. package/.agent/skills/gan-generator.md +0 -131
  164. package/.agent/skills/gan-planner.md +0 -99
  165. package/.agent/skills/go-build-resolver.md +0 -94
  166. package/.agent/skills/go-reviewer.md +0 -76
  167. package/.agent/skills/harness-optimizer.md +0 -35
  168. package/.agent/skills/healthcare-reviewer.md +0 -83
  169. package/.agent/skills/java-build-resolver.md +0 -153
  170. package/.agent/skills/java-reviewer.md +0 -92
  171. package/.agent/skills/kodelyth-advisor.md +0 -172
  172. package/.agent/skills/kotlin-build-resolver.md +0 -118
  173. package/.agent/skills/kotlin-reviewer.md +0 -159
  174. package/.agent/skills/loop-operator.md +0 -36
  175. package/.agent/skills/migration-guide.md +0 -368
  176. package/.agent/skills/opensource-forker.md +0 -198
  177. package/.agent/skills/opensource-packager.md +0 -249
  178. package/.agent/skills/opensource-sanitizer.md +0 -188
  179. package/.agent/skills/pair-programmer.md +0 -260
  180. package/.agent/skills/performance-optimizer.md +0 -446
  181. package/.agent/skills/planner.md +0 -212
  182. package/.agent/skills/pr-test-analyzer.md +0 -45
  183. package/.agent/skills/python-reviewer.md +0 -98
  184. package/.agent/skills/pytorch-build-resolver.md +0 -120
  185. package/.agent/skills/refactor-cleaner.md +0 -85
  186. package/.agent/skills/rust-build-resolver.md +0 -148
  187. package/.agent/skills/rust-reviewer.md +0 -94
  188. package/.agent/skills/security-reviewer.md +0 -108
  189. package/.agent/skills/seo-specialist.md +0 -62
  190. package/.agent/skills/silent-failure-hunter.md +0 -50
  191. package/.agent/skills/tdd-guide.md +0 -91
  192. package/.agent/skills/type-design-analyzer.md +0 -41
  193. package/.agent/skills/typescript-reviewer.md +0 -112
  194. package/.agent/skills/ux-reviewer.md +0 -483
  195. package/.agent/workflows/agent-sort.md +0 -23
  196. package/.agent/workflows/aside.md +0 -164
  197. package/.agent/workflows/build-fix.md +0 -62
  198. package/.agent/workflows/checkpoint.md +0 -74
  199. package/.agent/workflows/claw.md +0 -23
  200. package/.agent/workflows/code-review.md +0 -289
  201. package/.agent/workflows/context-budget.md +0 -23
  202. package/.agent/workflows/cpp-build.md +0 -173
  203. package/.agent/workflows/cpp-review.md +0 -132
  204. package/.agent/workflows/cpp-test.md +0 -251
  205. package/.agent/workflows/devfleet.md +0 -23
  206. package/.agent/workflows/docs.md +0 -23
  207. package/.agent/workflows/e2e.md +0 -268
  208. package/.agent/workflows/eval.md +0 -23
  209. package/.agent/workflows/evolve.md +0 -178
  210. package/.agent/workflows/feature-dev.md +0 -49
  211. package/.agent/workflows/flutter-build.md +0 -164
  212. package/.agent/workflows/flutter-review.md +0 -116
  213. package/.agent/workflows/flutter-test.md +0 -144
  214. package/.agent/workflows/gan-build.md +0 -99
  215. package/.agent/workflows/gan-design.md +0 -35
  216. package/.agent/workflows/go-build.md +0 -183
  217. package/.agent/workflows/go-review.md +0 -148
  218. package/.agent/workflows/go-test.md +0 -268
  219. package/.agent/workflows/gradle-build.md +0 -70
  220. package/.agent/workflows/harness-audit.md +0 -73
  221. package/.agent/workflows/hookify-configure.md +0 -14
  222. package/.agent/workflows/hookify-help.md +0 -46
  223. package/.agent/workflows/hookify-list.md +0 -21
  224. package/.agent/workflows/hookify.md +0 -50
  225. package/.agent/workflows/instinct-export.md +0 -66
  226. package/.agent/workflows/instinct-import.md +0 -114
  227. package/.agent/workflows/instinct-status.md +0 -59
  228. package/.agent/workflows/jira.md +0 -106
  229. package/.agent/workflows/kotlin-build.md +0 -174
  230. package/.agent/workflows/kotlin-review.md +0 -140
  231. package/.agent/workflows/kotlin-test.md +0 -312
  232. package/.agent/workflows/learn-eval.md +0 -116
  233. package/.agent/workflows/learn.md +0 -70
  234. package/.agent/workflows/loop-start.md +0 -32
  235. package/.agent/workflows/loop-status.md +0 -24
  236. package/.agent/workflows/model-route.md +0 -26
  237. package/.agent/workflows/multi-backend.md +0 -158
  238. package/.agent/workflows/multi-execute.md +0 -315
  239. package/.agent/workflows/multi-frontend.md +0 -158
  240. package/.agent/workflows/multi-plan.md +0 -268
  241. package/.agent/workflows/multi-workflow.md +0 -191
  242. package/.agent/workflows/orchestrate.md +0 -135
  243. package/.agent/workflows/plan.md +0 -117
  244. package/.agent/workflows/pm2.md +0 -272
  245. package/.agent/workflows/projects.md +0 -39
  246. package/.agent/workflows/promote.md +0 -41
  247. package/.agent/workflows/prompt-optimize.md +0 -23
  248. package/.agent/workflows/prp-commit.md +0 -112
  249. package/.agent/workflows/prp-implement.md +0 -385
  250. package/.agent/workflows/prp-plan.md +0 -502
  251. package/.agent/workflows/prp-pr.md +0 -184
  252. package/.agent/workflows/prp-prd.md +0 -447
  253. package/.agent/workflows/prune.md +0 -31
  254. package/.agent/workflows/python-review.md +0 -297
  255. package/.agent/workflows/quality-gate.md +0 -29
  256. package/.agent/workflows/refactor-clean.md +0 -80
  257. package/.agent/workflows/resume-session.md +0 -156
  258. package/.agent/workflows/review-pr.md +0 -37
  259. package/.agent/workflows/rules-distill.md +0 -20
  260. package/.agent/workflows/rust-build.md +0 -187
  261. package/.agent/workflows/rust-review.md +0 -142
  262. package/.agent/workflows/rust-test.md +0 -308
  263. package/.agent/workflows/santa-loop.md +0 -175
  264. package/.agent/workflows/save-session.md +0 -275
  265. package/.agent/workflows/sessions.md +0 -333
  266. package/.agent/workflows/setup-pm.md +0 -80
  267. package/.agent/workflows/skill-create.md +0 -174
  268. package/.agent/workflows/skill-health.md +0 -54
  269. package/.agent/workflows/tdd.md +0 -231
  270. package/.agent/workflows/test-coverage.md +0 -69
  271. package/.agent/workflows/update-codemaps.md +0 -72
  272. package/.agent/workflows/update-docs.md +0 -84
  273. package/.agent/workflows/verify.md +0 -23
@@ -1,31 +1,32 @@
1
1
  # Platform Support
2
2
 
3
- Kodelyth ECC works across 6 AI coding platforms. Feature availability varies by platform.
3
+ Kodelyth ECC installs on 11 AI coding platforms via 13 install targets. Feature depth varies hooks use Claude Code's native settings format and have no equivalent elsewhere; Cursor's agent system is incompatible with ECC's markdown agent format.
4
4
 
5
5
  ---
6
6
 
7
7
  ## Capability Matrix
8
8
 
9
- | Feature | Claude Code | Windsurf | Cursor | Codex CLI | Antigravity | OpenCode |
10
- |---|---|---|---|---|---|---|
11
- | 62 Agents | Yes | Yes | Yes | Yes | Yes | Yes |
12
- | 188 Skills | Yes | Yes | Yes | Yes | Yes | Yes |
13
- | 80 Commands | Yes | Yes | Yes | Yes | Yes | Yes |
14
- | Hooks (20+) | Yes | No | No | No | No | No |
15
- | Memory inject | Yes | Manual | Manual | Manual | Manual | Manual |
16
- | Compound learning | Yes (auto) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) | Yes (manual) |
17
- | Semantic routing | Yes | Yes | Yes | Yes | Yes | Yes |
18
- | `/project-launch` | Yes | Yes | Yes | Yes | Yes | Yes |
19
- | `/team-review` | Yes | Yes | Yes | Yes | Yes | Yes |
20
- | `/lessons` | Yes | Yes | Yes | Yes | Yes | Yes |
9
+ | Feature | Claude Code | Roo Code | Codex CLI | Aider | Kimi | Windsurf | Antigravity | Gemini CLI | Cursor | Cline | OpenCode |
10
+ |---|---|---|---|---|---|---|---|---|---|---|---|
11
+ | 70 Agents | | | | | | | ✓ | ✓ | — | ✓* | — |
12
+ | 194 Skills | | | | | | | partial | ✓ | ✓ | — | — |
13
+ | 97 Commands | | | | | | | ✓ | — | — | ✓* | — |
14
+ | 22+ Hooks | | | | | | | | — | — | — | — |
15
+ | Rules | | | | | | | | ✓ | ✓ | ✓ | ✓ |
16
+ | Auto lessons | | | | | | | | | | | |
17
+ | Manual `/lessons` | | | | | | | ✓ | ✓ | ✓ | ✓ | ✓ |
21
18
 
22
- **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.
19
+ \* Cline flattens agents and commands into `.clinerules/` as markdown rules they provide context but not structured invocation.
20
+
21
+ **Hooks** require Claude Code's JSON hook system (`~/.claude/settings.json`). No other platform has an equivalent.
22
+
23
+ **MCP Server** and **Dashboard** (`npx kodelyth-ecc mcp` / `npx kodelyth-ecc dashboard`) are standalone CLI tools that work on every platform.
23
24
 
24
25
  ---
25
26
 
26
27
  ## Claude Code
27
28
 
28
- The full ECC experience. All features active.
29
+ Full feature set. All hooks auto-wired. Memory injected automatically at session start.
29
30
 
30
31
  **Install:**
31
32
  ```bash
@@ -35,125 +36,231 @@ npx kodelyth-ecc
35
36
  **File layout:**
36
37
  ```
37
38
  ~/.claude/
38
- ├── agents/ → 62 specialist agents
39
- ├── skills/ → 188 skills
40
- ├── commands/ → 80 slash commands
41
- ├── rules/ → 17 always-on rules
42
- └── settings.json → hooks wired here
39
+ ├── agents/ → 70 specialist agents
40
+ ├── skills/ → 194 skills
41
+ ├── commands/ → 97 slash commands
42
+ ├── rules/ → always-on coding standards + routing
43
+ └── hooks/ → hooks.json (wired into settings.json)
43
44
  ```
44
45
 
45
46
  **Hooks active:**
46
- - Session start: `read-lessons.js` + `memory inject`
47
- - Every prompt: `auto-recall` (BM25 search)
48
- - After every edit: `quality-gate` + `test-reminder`
49
- - Before every commit: `secret-scan` + `console-check`
50
- - Before every push: `branch-check`
51
- - Session end: `capture-correction` + `memory-capture` + `desktop-notify` + `cost-tracker`
47
+ - Session start: `read-lessons.js` + memory inject
48
+ - Every prompt: auto-recall (BM25 search)
49
+ - After edits: quality-gate + test-reminder
50
+ - Before commit: secret-scan + console-check
51
+ - Before push: branch-check
52
+ - Session end: capture-correction + memory-capture + cost-tracker
52
53
 
53
- **Compound learning:** fully automatic — corrections are captured at session end and injected at session start without any user action.
54
+ **Safety hooks (v1.7.0):**
55
+ - `prompt-injection-guard` — blocks prompt injection attempts
56
+ - `token-budget-enforcer` — warns when approaching token limit
54
57
 
55
58
  ---
56
59
 
57
- ## Windsurf
60
+ ## Roo Code
58
61
 
59
- Agents, skills, and commands work. No hooks.
62
+ Agents, skills, and commands. No hooks.
60
63
 
61
64
  **Install:**
62
65
  ```bash
63
- npx kodelyth-ecc --target windsurf-project
66
+ npx kodelyth-ecc --target roocode
64
67
  ```
65
68
 
66
69
  **File layout:**
67
70
  ```
68
- .windsurf/
71
+ .roo/
69
72
  ├── agents/
70
73
  ├── skills/
71
74
  ├── commands/
72
75
  └── rules/
73
76
  ```
74
77
 
75
- **Lessons (manual):** Run `/lessons` at the start of each session to load `tasks/lessons.md`. Without hooks, lessons are not auto-injected.
78
+ **Lessons (manual):** Run `/lessons` at session start to load `tasks/lessons.md`.
76
79
 
77
80
  ---
78
81
 
79
- ## Cursor
82
+ ## Codex CLI
80
83
 
81
- Agents, skills, and commands work. No hooks.
84
+ Agents, skills, and commands. `image-architect` uses DALL-E 3 natively.
82
85
 
83
86
  **Install:**
84
87
  ```bash
85
- npx kodelyth-ecc --target cursor-project
88
+ npx kodelyth-ecc --target codex-home
86
89
  ```
87
90
 
88
91
  **File layout:**
89
92
  ```
90
- .cursor/
93
+ ~/.codex/
91
94
  ├── agents/
92
95
  ├── skills/
93
96
  ├── commands/
94
97
  └── rules/
95
98
  ```
96
99
 
97
- **Lessons (manual):** Run `/lessons` at the start of each session.
100
+ **Image generation:** `image-architect` routes to DALL-E 3 automatically on Codex CLI (no API key required).
98
101
 
99
102
  ---
100
103
 
101
- ## Codex CLI
104
+ ## Aider
102
105
 
103
- Full agents and skills. `image-architect` uses DALL-E 3 natively (no API key required).
106
+ Agents, skills, and commands. `CONVENTIONS.md` auto-generated at project root.
104
107
 
105
108
  **Install:**
106
109
  ```bash
107
- npx kodelyth-ecc --target codex-home
110
+ npx kodelyth-ecc --target aider
108
111
  ```
109
112
 
110
113
  **File layout:**
111
114
  ```
112
- ~/.codex/
115
+ .aider-ecc/
113
116
  ├── agents/
114
117
  ├── skills/
115
118
  ├── commands/
116
119
  └── rules/
120
+ CONVENTIONS.md → auto-generated, points aider at .aider-ecc/
117
121
  ```
118
122
 
119
- **Image generation:** `image-architect` on Codex CLI routes to DALL-E 3 automatically.
123
+ **Usage:**
124
+ ```bash
125
+ aider --read .aider-ecc/rules/agent-intent-routing.md \
126
+ --read .aider-ecc/agents/debug-detective.md
127
+ ```
120
128
 
121
129
  ---
122
130
 
123
- ## Google Antigravity
131
+ ## Kimi
124
132
 
125
- Full agents and skills. `image-architect` uses Gemini Imagen 3 natively (no API key required).
133
+ Agents, skills, and commands.
126
134
 
127
135
  **Install:**
128
136
  ```bash
129
- npx kodelyth-ecc --target antigravity
137
+ npx kodelyth-ecc --target kimi
130
138
  ```
131
139
 
132
140
  **File layout:**
133
141
  ```
134
- ~/.antigravity/
142
+ .kimi/
135
143
  ├── agents/
136
144
  ├── skills/
137
145
  ├── commands/
138
146
  └── rules/
139
147
  ```
140
148
 
141
- **Image generation:** `image-architect` on Antigravity routes to Gemini Imagen 3 automatically — the most capable image model in the ECC stack.
149
+ ---
142
150
 
143
- **Recommended models (Antigravity-specific):**
151
+ ## Windsurf
144
152
 
145
- | Task | Model |
146
- |---|---|
147
- | Most coding work | Gemini 3.1 Pro (Low) |
148
- | Architecture, security audits, hard bugs | Gemini 3.1 Pro (High) |
149
- | Claude agent behavior + extended thinking | Claude Sonnet 4.6 (Thinking) |
150
- | Hardest problems, last resort | Claude Opus 4.6 (Thinking) |
153
+ Agents, skills, and rules. No commands (Windsurf workflows use a different format). A `.windsurfrules` file is generated from the common rules.
154
+
155
+ **Install (project):**
156
+ ```bash
157
+ npx kodelyth-ecc --target windsurf-project
158
+ ```
159
+
160
+ **Install (global):**
161
+ ```bash
162
+ npx kodelyth-ecc --target windsurf-home
163
+ ```
164
+
165
+ **File layout:**
166
+ ```
167
+ .windsurf/
168
+ ├── agents/
169
+ ├── skills/
170
+ └── rules/
171
+ .windsurfrules → auto-generated from common rules
172
+ ```
173
+
174
+ ---
175
+
176
+ ## Antigravity
177
+
178
+ Agents (installed as `.agent/skills/`), commands (as `.agent/workflows/`), rules. Four core ECC skills are copied into rules as always-on context. The full 194-skill directory is not installed (Antigravity has no separate skills system).
179
+
180
+ **Install:**
181
+ ```bash
182
+ npx kodelyth-ecc --target antigravity
183
+ ```
184
+
185
+ **File layout:**
186
+ ```
187
+ .agent/
188
+ ├── skills/ → 70 agents (mapped to Antigravity's skills system)
189
+ ├── workflows/ → 97 commands (mapped to Antigravity's workflows)
190
+ └── rules/ → rules + 4 featured ECC skills as context
191
+ ```
192
+
193
+ **Image generation:** `image-architect` routes to Gemini Imagen 3 natively.
194
+
195
+ ---
196
+
197
+ ## Gemini CLI
198
+
199
+ Agents, skills, and rules. No commands. A `GEMINI.md` is generated pointing to the installed content.
200
+
201
+ **Install (project):**
202
+ ```bash
203
+ npx kodelyth-ecc --target gemini-project
204
+ ```
205
+
206
+ **Install (global):**
207
+ ```bash
208
+ npx kodelyth-ecc --target gemini-home
209
+ ```
210
+
211
+ **File layout:**
212
+ ```
213
+ .gemini/
214
+ ├── agents/
215
+ ├── skills/
216
+ ├── rules/
217
+ └── GEMINI.md → auto-generated context file
218
+ ```
219
+
220
+ ---
221
+
222
+ ## Cursor
223
+
224
+ Rules and skills only. Cursor's agent system uses a different YAML format that is not compatible with ECC's markdown agents.
225
+
226
+ **Install:**
227
+ ```bash
228
+ npx kodelyth-ecc --target cursor-project
229
+ ```
230
+
231
+ **File layout:**
232
+ ```
233
+ .cursor/
234
+ ├── skills/
235
+ └── rules/ → flattened from all rule directories
236
+ ```
237
+
238
+ ---
239
+
240
+ ## Cline
241
+
242
+ Rules, agents, and commands all flattened into `.clinerules/` as markdown context files. No separate skills directory.
243
+
244
+ **Install:**
245
+ ```bash
246
+ npx kodelyth-ecc --target cline
247
+ ```
248
+
249
+ **File layout:**
250
+ ```
251
+ .clinerules/
252
+ ├── (all rule .md files)
253
+ ├── (all agent .md files — flattened)
254
+ └── (all command .md files — flattened)
255
+ ```
256
+
257
+ Cline reads everything in `.clinerules/` as persistent context, so agents and commands are available as reference material even though they aren't structured invocations.
151
258
 
152
259
  ---
153
260
 
154
261
  ## OpenCode
155
262
 
156
- Agents, skills, and commands work.
263
+ Rules only. OpenCode has no agent or skill directory concept.
157
264
 
158
265
  **Install:**
159
266
  ```bash
@@ -163,36 +270,32 @@ npx kodelyth-ecc --target opencode
163
270
  **File layout:**
164
271
  ```
165
272
  .opencode/
166
- ├── agents/
167
- ├── skills/
168
- ├── commands/
169
- └── rules/
273
+ └── rules/ → flattened from all rule directories
170
274
  ```
171
275
 
172
276
  ---
173
277
 
174
278
  ## Lessons on Non-Claude-Code Platforms
175
279
 
176
- On all platforms except Claude Code, the compound learning system requires one manual step per session:
280
+ On all platforms except Claude Code, load project lessons manually at session start:
177
281
 
178
- 1. Start your session
179
- 2. Type `/lessons`
180
- 3. ECC reads `tasks/lessons.md` and activates all project rules for the session
282
+ ```
283
+ /lessons
284
+ ```
181
285
 
182
- Claude Code users: this happens automatically via the `read-lessons.js` SessionStart hook.
286
+ This reads `tasks/lessons.md` and activates all project rules for the session. On Claude Code, this happens automatically via the `read-lessons.js` SessionStart hook.
183
287
 
184
288
  ---
185
289
 
186
290
  ## image-architect Platform Routing
187
291
 
188
- | Platform | Image model used |
292
+ | Platform | Image model |
189
293
  |---|---|
190
294
  | Antigravity | Gemini Imagen 3 (native, no key) |
191
295
  | Codex CLI | DALL-E 3 (native, no key) |
192
296
  | Claude Code | fal.ai MCP → SVG fallback |
193
- | Windsurf | Native model gen → fal.ai → SVG fallback |
194
- | Cursor | Native model gen → fal.ai → SVG fallback |
195
- | OpenCode | SVG fallback |
297
+ | Windsurf / Cursor | native model gen → fal.ai → SVG fallback |
298
+ | Others | SVG fallback |
196
299
 
197
300
  ---
198
301
 
@@ -200,8 +303,22 @@ Claude Code users: this happens automatically via the `read-lessons.js` SessionS
200
303
 
201
304
  | OS | Supported | Install method |
202
305
  |---|---|---|
203
- | macOS | Yes | `npx` or `./install.sh` |
204
- | Linux | Yes | `npx` or `./install.sh` |
205
- | Windows | Yes | `npx` or `./install.ps1` |
306
+ | macOS | | `npx` or `./install.sh` |
307
+ | Linux | | `npx` or `./install.sh` |
308
+ | Windows | | `npx` or `.\install.ps1` |
309
+
310
+ The `desktop-notify` hook (macOS system notification) is macOS-only and silently skips on other platforms.
311
+
312
+ ---
313
+
314
+ ## Choosing a Platform
206
315
 
207
- All Node.js-based scripts are cross-platform. The `desktop-notify` hook (macOS notification) is macOS-only and silently skips on other platforms.
316
+ | Workflow | Best platform |
317
+ |---|---|
318
+ | Maximum feature set | Claude Code |
319
+ | Git-native automation | Aider |
320
+ | VS Code + Cline extension | Cline or Roo Code |
321
+ | OpenAI stack | Codex CLI |
322
+ | Deep reasoning, complex architecture | Antigravity |
323
+ | Windsurf IDE | Windsurf |
324
+ | Gemini stack | Gemini CLI |
@@ -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. 188 skills total.
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
- | Lessons | `/lessons` | Load/save/manage `tasks/lessons.md` on all 6 platforms |
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 11 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
- ## Agent Orchestration Skills
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-5 specialist agents in parallel and return all results at once.
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.