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/wiki/Platform-Support.md
CHANGED
|
@@ -1,31 +1,32 @@
|
|
|
1
1
|
# Platform Support
|
|
2
2
|
|
|
3
|
-
Kodelyth ECC
|
|
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 |
|
|
10
|
-
|
|
11
|
-
|
|
|
12
|
-
|
|
|
13
|
-
|
|
|
14
|
-
| Hooks
|
|
15
|
-
|
|
|
16
|
-
|
|
|
17
|
-
|
|
|
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
|
-
|
|
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
|
-
|
|
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/ →
|
|
39
|
-
├── skills/ →
|
|
40
|
-
├── commands/ →
|
|
41
|
-
├── rules/ →
|
|
42
|
-
└──
|
|
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` +
|
|
47
|
-
- Every prompt:
|
|
48
|
-
- After
|
|
49
|
-
- Before
|
|
50
|
-
- Before
|
|
51
|
-
- Session end:
|
|
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
|
-
**
|
|
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
|
-
##
|
|
60
|
+
## Roo Code
|
|
58
61
|
|
|
59
|
-
Agents, skills, and commands
|
|
62
|
+
Agents, skills, and commands. No hooks.
|
|
60
63
|
|
|
61
64
|
**Install:**
|
|
62
65
|
```bash
|
|
63
|
-
npx kodelyth-ecc --target
|
|
66
|
+
npx kodelyth-ecc --target roocode
|
|
64
67
|
```
|
|
65
68
|
|
|
66
69
|
**File layout:**
|
|
67
70
|
```
|
|
68
|
-
.
|
|
71
|
+
.roo/
|
|
69
72
|
├── agents/
|
|
70
73
|
├── skills/
|
|
71
74
|
├── commands/
|
|
72
75
|
└── rules/
|
|
73
76
|
```
|
|
74
77
|
|
|
75
|
-
**Lessons (manual):** Run `/lessons` at
|
|
78
|
+
**Lessons (manual):** Run `/lessons` at session start to load `tasks/lessons.md`.
|
|
76
79
|
|
|
77
80
|
---
|
|
78
81
|
|
|
79
|
-
##
|
|
82
|
+
## Codex CLI
|
|
80
83
|
|
|
81
|
-
Agents, skills, and commands
|
|
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
|
|
88
|
+
npx kodelyth-ecc --target codex-home
|
|
86
89
|
```
|
|
87
90
|
|
|
88
91
|
**File layout:**
|
|
89
92
|
```
|
|
90
|
-
|
|
93
|
+
~/.codex/
|
|
91
94
|
├── agents/
|
|
92
95
|
├── skills/
|
|
93
96
|
├── commands/
|
|
94
97
|
└── rules/
|
|
95
98
|
```
|
|
96
99
|
|
|
97
|
-
**
|
|
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
|
-
##
|
|
104
|
+
## Aider
|
|
102
105
|
|
|
103
|
-
|
|
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
|
|
110
|
+
npx kodelyth-ecc --target aider
|
|
108
111
|
```
|
|
109
112
|
|
|
110
113
|
**File layout:**
|
|
111
114
|
```
|
|
112
|
-
|
|
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
|
-
**
|
|
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
|
-
##
|
|
131
|
+
## Kimi
|
|
124
132
|
|
|
125
|
-
|
|
133
|
+
Agents, skills, and commands.
|
|
126
134
|
|
|
127
135
|
**Install:**
|
|
128
136
|
```bash
|
|
129
|
-
npx kodelyth-ecc --target
|
|
137
|
+
npx kodelyth-ecc --target kimi
|
|
130
138
|
```
|
|
131
139
|
|
|
132
140
|
**File layout:**
|
|
133
141
|
```
|
|
134
|
-
|
|
142
|
+
.kimi/
|
|
135
143
|
├── agents/
|
|
136
144
|
├── skills/
|
|
137
145
|
├── commands/
|
|
138
146
|
└── rules/
|
|
139
147
|
```
|
|
140
148
|
|
|
141
|
-
|
|
149
|
+
---
|
|
142
150
|
|
|
143
|
-
|
|
151
|
+
## Windsurf
|
|
144
152
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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,
|
|
280
|
+
On all platforms except Claude Code, load project lessons manually at session start:
|
|
177
281
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
282
|
+
```
|
|
283
|
+
/lessons
|
|
284
|
+
```
|
|
181
285
|
|
|
182
|
-
Claude Code
|
|
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
|
|
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 |
|
|
194
|
-
|
|
|
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 |
|
|
204
|
-
| Linux |
|
|
205
|
-
| Windows |
|
|
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
|
-
|
|
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 |
|
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 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
|
-
##
|
|
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.
|