kodelyth-ecc 1.2.0 → 1.2.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/README.md +27 -13
- package/VERSION +1 -1
- package/install.ps1 +58 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,30 +19,42 @@ Works with **Claude Code**, **Google Antigravity**, **Cursor**, **Codex CLI**, a
|
|
|
19
19
|
|
|
20
20
|
## Install
|
|
21
21
|
|
|
22
|
-
### Option 1 — npx (Node.js
|
|
22
|
+
### Option 1 — npx from npm (Node.js 18+, any platform)
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
The simplest install. Node.js is the only requirement.
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
npx
|
|
27
|
+
npx kodelyth-ecc
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
Install for a specific platform:
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
npx
|
|
34
|
-
npx
|
|
35
|
-
npx
|
|
36
|
-
npx
|
|
37
|
-
npx
|
|
38
|
-
npx
|
|
33
|
+
npx kodelyth-ecc --target windsurf-project # Windsurf (project)
|
|
34
|
+
npx kodelyth-ecc --target windsurf-home # Windsurf (global)
|
|
35
|
+
npx kodelyth-ecc --target antigravity # Google Antigravity
|
|
36
|
+
npx kodelyth-ecc --target cursor-project # Cursor IDE
|
|
37
|
+
npx kodelyth-ecc --target codex-home # Codex CLI
|
|
38
|
+
npx kodelyth-ecc --target opencode # OpenCode
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
> Node.js not installed? Download it from [nodejs.org](https://nodejs.org) — LTS version recommended.
|
|
42
42
|
|
|
43
43
|
---
|
|
44
44
|
|
|
45
|
-
### Option 2 —
|
|
45
|
+
### Option 2 — npx from GitHub (always latest commit)
|
|
46
|
+
|
|
47
|
+
Use this if you want the very latest unreleased version directly from the main branch.
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npx github:sifxprime/kodelyth-ecc
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Same `--target` flags apply.
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
### Option 3 — curl (macOS / Linux)
|
|
46
58
|
|
|
47
59
|
```bash
|
|
48
60
|
curl -fsSL https://raw.githubusercontent.com/sifxprime/kodelyth-ecc/main/install.sh | bash
|
|
@@ -56,7 +68,7 @@ curl -fsSL https://raw.githubusercontent.com/sifxprime/kodelyth-ecc/main/install
|
|
|
56
68
|
|
|
57
69
|
---
|
|
58
70
|
|
|
59
|
-
### Option
|
|
71
|
+
### Option 4 — clone and run (all platforms)
|
|
60
72
|
|
|
61
73
|
```bash
|
|
62
74
|
git clone https://github.com/sifxprime/kodelyth-ecc.git
|
|
@@ -67,8 +79,10 @@ cd kodelyth-ecc
|
|
|
67
79
|
./install.sh --target windsurf-project # Windsurf
|
|
68
80
|
./install.sh --target antigravity # Google Antigravity
|
|
69
81
|
|
|
70
|
-
# Windows
|
|
82
|
+
# Windows (PowerShell)
|
|
71
83
|
.\install.ps1
|
|
84
|
+
.\install.ps1 -Target windsurf-project
|
|
85
|
+
.\install.ps1 -Target codex-home
|
|
72
86
|
```
|
|
73
87
|
|
|
74
88
|
---
|
|
@@ -138,7 +152,7 @@ PORT=3456 # Dashboard port (default: 3456)
|
|
|
138
152
|
| Skills | **185** | Domain knowledge — patterns, testing, security, DevOps |
|
|
139
153
|
| Commands | **79** | Slash command workflows (`/tdd`, `/plan`, `/code-review`, etc.) |
|
|
140
154
|
| Hooks | **15+** | Automated lifecycle triggers — quality gates, session memory, cost tracking |
|
|
141
|
-
| Rules | **
|
|
155
|
+
| Rules | **15** | Language-specific coding standards |
|
|
142
156
|
|
|
143
157
|
---
|
|
144
158
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.1
|
package/install.ps1
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
# =============================================================================
|
|
2
2
|
# Kodelyth ECC — Windows PowerShell Installer
|
|
3
|
-
# Supports: Claude Code, Antigravity, Cursor, Codex, OpenCode
|
|
3
|
+
# Supports: Claude Code, Antigravity, Cursor, Codex, Windsurf, OpenCode
|
|
4
4
|
# Usage:
|
|
5
|
-
# .\install.ps1
|
|
6
|
-
# .\install.ps1 -Target
|
|
7
|
-
# .\install.ps1 -Target
|
|
8
|
-
# .\install.ps1 -Target
|
|
5
|
+
# .\install.ps1 # Claude Code (default)
|
|
6
|
+
# .\install.ps1 -Target windsurf-project # Windsurf (project)
|
|
7
|
+
# .\install.ps1 -Target windsurf-home # Windsurf (global)
|
|
8
|
+
# .\install.ps1 -Target antigravity # Google Antigravity
|
|
9
|
+
# .\install.ps1 -Target cursor-project # Cursor IDE
|
|
10
|
+
# .\install.ps1 -Target codex-home # OpenAI Codex CLI
|
|
11
|
+
# .\install.ps1 -Target opencode # OpenCode
|
|
9
12
|
# =============================================================================
|
|
10
13
|
|
|
11
14
|
param(
|
|
@@ -18,7 +21,7 @@ $ErrorActionPreference = "Stop"
|
|
|
18
21
|
# ── Banner ────────────────────────────────────────────────────────────────────
|
|
19
22
|
Write-Host ""
|
|
20
23
|
Write-Host " Kodelyth ECC — Production-grade AI coding agent toolkit" -ForegroundColor Cyan
|
|
21
|
-
Write-Host "
|
|
24
|
+
Write-Host " 53 agents · 185 skills · 79 commands · 18+ hooks" -ForegroundColor Gray
|
|
22
25
|
Write-Host ""
|
|
23
26
|
|
|
24
27
|
$ScriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
@@ -35,6 +38,22 @@ switch ($Target) {
|
|
|
35
38
|
$HooksDest = "$Dest\hooks"
|
|
36
39
|
$RulesDest = "$Dest\rules"
|
|
37
40
|
}
|
|
41
|
+
"windsurf-project" {
|
|
42
|
+
$Dest = "$(Get-Location)\.windsurf"
|
|
43
|
+
$AgentsDest = "$Dest\agents"
|
|
44
|
+
$SkillsDest = "$Dest\skills"
|
|
45
|
+
$CommandsDest = ""
|
|
46
|
+
$HooksDest = ""
|
|
47
|
+
$RulesDest = "$Dest\rules"
|
|
48
|
+
}
|
|
49
|
+
"windsurf-home" {
|
|
50
|
+
$Dest = "$HomeDir\.codeium\windsurf"
|
|
51
|
+
$AgentsDest = "$Dest\agents"
|
|
52
|
+
$SkillsDest = "$Dest\skills"
|
|
53
|
+
$CommandsDest = ""
|
|
54
|
+
$HooksDest = ""
|
|
55
|
+
$RulesDest = "$Dest\rules"
|
|
56
|
+
}
|
|
38
57
|
"antigravity" {
|
|
39
58
|
$Dest = "$(Get-Location)\.agent"
|
|
40
59
|
$AgentsDest = "$Dest\skills"
|
|
@@ -59,9 +78,17 @@ switch ($Target) {
|
|
|
59
78
|
$HooksDest = ""
|
|
60
79
|
$RulesDest = "$Dest\rules"
|
|
61
80
|
}
|
|
81
|
+
"opencode" {
|
|
82
|
+
$Dest = "$(Get-Location)\.opencode"
|
|
83
|
+
$AgentsDest = ""
|
|
84
|
+
$SkillsDest = ""
|
|
85
|
+
$CommandsDest = ""
|
|
86
|
+
$HooksDest = ""
|
|
87
|
+
$RulesDest = "$Dest\rules"
|
|
88
|
+
}
|
|
62
89
|
default {
|
|
63
90
|
Write-Host "Unknown target: $Target" -ForegroundColor Red
|
|
64
|
-
Write-Host "Valid targets: claude-home, antigravity, cursor-project, codex-home"
|
|
91
|
+
Write-Host "Valid targets: claude-home, windsurf-project, windsurf-home, antigravity, cursor-project, codex-home, opencode"
|
|
65
92
|
exit 1
|
|
66
93
|
}
|
|
67
94
|
}
|
|
@@ -104,8 +131,8 @@ Write-Host "Installing components..." -ForegroundColor Bold
|
|
|
104
131
|
|
|
105
132
|
switch ($Target) {
|
|
106
133
|
"claude-home" {
|
|
107
|
-
Install-Dir "$ScriptDir\agents" $AgentsDest "Agents (
|
|
108
|
-
Install-Dir "$ScriptDir\skills" $SkillsDest "Skills (
|
|
134
|
+
Install-Dir "$ScriptDir\agents" $AgentsDest "Agents (53)"
|
|
135
|
+
Install-Dir "$ScriptDir\skills" $SkillsDest "Skills (185)"
|
|
109
136
|
Install-Dir "$ScriptDir\commands" $CommandsDest "Commands (79)"
|
|
110
137
|
|
|
111
138
|
# Hooks
|
|
@@ -134,21 +161,38 @@ switch ($Target) {
|
|
|
134
161
|
Copy-Item "$ScriptDir\SOUL.md" "$Dest\SOUL.md" -Force -ErrorAction SilentlyContinue
|
|
135
162
|
Write-Host " [OK] CLAUDE.md + SOUL.md" -ForegroundColor Green
|
|
136
163
|
}
|
|
164
|
+
{ $_ -in "windsurf-project","windsurf-home" } {
|
|
165
|
+
Install-Dir "$ScriptDir\agents" $AgentsDest "Agents (53)"
|
|
166
|
+
Install-Dir "$ScriptDir\skills" $SkillsDest "Skills (185)"
|
|
167
|
+
Install-Flat "$ScriptDir\rules" $RulesDest "Rules"
|
|
168
|
+
|
|
169
|
+
# Generate .windsurfrules from all common rules
|
|
170
|
+
$WindsurfRulesFile = if ($Target -eq "windsurf-project") { "$(Get-Location)\.windsurfrules" } else { "$HomeDir\.windsurfrules" }
|
|
171
|
+
$CommonRulesDir = "$ScriptDir\rules\common"
|
|
172
|
+
if (Test-Path $CommonRulesDir) {
|
|
173
|
+
$Combined = Get-ChildItem -Path $CommonRulesDir -Filter "*.md" | Sort-Object Name | ForEach-Object { Get-Content $_.FullName }
|
|
174
|
+
$Combined | Out-File -FilePath $WindsurfRulesFile -Encoding UTF8
|
|
175
|
+
Write-Host " [OK] .windsurfrules generated -> $WindsurfRulesFile" -ForegroundColor Green
|
|
176
|
+
}
|
|
177
|
+
}
|
|
137
178
|
"antigravity" {
|
|
138
|
-
Install-Dir "$ScriptDir\agents" $AgentsDest "Agents -> skills (
|
|
179
|
+
Install-Dir "$ScriptDir\agents" $AgentsDest "Agents -> skills (53)"
|
|
139
180
|
Install-Dir "$ScriptDir\commands" $CommandsDest "Commands -> workflows (79)"
|
|
140
181
|
Install-Flat "$ScriptDir\rules" $RulesDest "Rules"
|
|
141
182
|
}
|
|
142
183
|
"cursor-project" {
|
|
143
|
-
Install-Flat "$ScriptDir\rules" $RulesDest
|
|
144
|
-
Install-Dir "$ScriptDir\skills" $SkillsDest
|
|
184
|
+
Install-Flat "$ScriptDir\rules" $RulesDest "Rules"
|
|
185
|
+
Install-Dir "$ScriptDir\skills" $SkillsDest "Skills (185)"
|
|
145
186
|
}
|
|
146
187
|
"codex-home" {
|
|
147
|
-
Install-Dir "$ScriptDir\agents" $AgentsDest "Agents (
|
|
148
|
-
Install-Dir "$ScriptDir\skills" $SkillsDest "Skills (
|
|
188
|
+
Install-Dir "$ScriptDir\agents" $AgentsDest "Agents (53)"
|
|
189
|
+
Install-Dir "$ScriptDir\skills" $SkillsDest "Skills (185)"
|
|
149
190
|
Install-Dir "$ScriptDir\commands" $CommandsDest "Commands (79)"
|
|
150
191
|
Install-Flat "$ScriptDir\rules" $RulesDest "Rules"
|
|
151
192
|
}
|
|
193
|
+
"opencode" {
|
|
194
|
+
Install-Flat "$ScriptDir\rules" $RulesDest "Rules"
|
|
195
|
+
}
|
|
152
196
|
}
|
|
153
197
|
|
|
154
198
|
# ── Write install state ───────────────────────────────────────────────────────
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kodelyth-ecc",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Production-grade AI coding toolkit — 53 agents, 185 skills, 79 commands. Works with Claude Code, Windsurf, Cursor, Codex, Antigravity, and OpenCode.",
|
|
5
5
|
"author": "Kodelyth <github.com/sifxprime>",
|
|
6
6
|
"license": "MIT",
|