kodelyth-ecc 1.8.2 → 1.8.3
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/install.ps1 +21 -21
- package/package.json +1 -1
package/install.ps1
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
# =============================================================================
|
|
2
|
-
# Kodelyth ECC
|
|
1
|
+
# =============================================================================
|
|
2
|
+
# Kodelyth ECC -- Windows PowerShell Installer
|
|
3
3
|
# Supports: Claude Code, Antigravity, Cursor, Codex, Windsurf, OpenCode
|
|
4
4
|
# Usage:
|
|
5
5
|
# .\install.ps1 # Claude Code (default)
|
|
@@ -32,7 +32,7 @@ $ErrorActionPreference = "Stop"
|
|
|
32
32
|
# Non-interactive mode: set by npx launcher (KODELYTH_NONINTERACTIVE=1) or --yes flag
|
|
33
33
|
$NonInteractive = ($env:KODELYTH_NONINTERACTIVE -eq '1')
|
|
34
34
|
|
|
35
|
-
#
|
|
35
|
+
# -- Bundle handling (audience-tailored cheat sheets) -------------------------
|
|
36
36
|
if ($Bundle) {
|
|
37
37
|
switch ($Bundle.ToLower()) {
|
|
38
38
|
{ $_ -in "indie-hacker","indie" } {
|
|
@@ -58,17 +58,17 @@ if ($Bundle) {
|
|
|
58
58
|
}
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
#
|
|
61
|
+
# -- Banner --------------------------------------------------------------------
|
|
62
62
|
Write-Host ""
|
|
63
|
-
Write-Host " Kodelyth ECC
|
|
64
|
-
Write-Host " 70 agents (8 devil-mode)
|
|
63
|
+
Write-Host " Kodelyth ECC -- Production-grade AI coding agent toolkit" -ForegroundColor Cyan
|
|
64
|
+
Write-Host " 70 agents (8 devil-mode) | 194 skills | 97 commands | 22+ hooks | intent routing | local memory" -ForegroundColor Gray
|
|
65
65
|
Write-Host ""
|
|
66
66
|
|
|
67
67
|
# $PSScriptRoot is always the directory containing this .ps1 file,
|
|
68
68
|
# even when launched via Node's spawnSync (unlike $MyInvocation.MyCommand.Path).
|
|
69
69
|
$ScriptDir = if ($PSScriptRoot) { $PSScriptRoot } else { Split-Path -Parent $MyInvocation.MyCommand.Path }
|
|
70
70
|
|
|
71
|
-
#
|
|
71
|
+
# -- Resolve Destination -------------------------------------------------------
|
|
72
72
|
$HomeDir = $env:USERPROFILE
|
|
73
73
|
|
|
74
74
|
switch ($Target) {
|
|
@@ -199,12 +199,12 @@ if (-not $NonInteractive) {
|
|
|
199
199
|
}
|
|
200
200
|
Write-Host ""
|
|
201
201
|
|
|
202
|
-
#
|
|
202
|
+
# -- Dynamic Counts -----------------------------------------------------------
|
|
203
203
|
$AgentCount = (Get-ChildItem -Path "$ScriptDir\agents" -Filter "*.md" -File).Count
|
|
204
204
|
$SkillCount = (Get-ChildItem -Path "$ScriptDir\skills" -Recurse -Filter "SKILL.md" -File).Count
|
|
205
205
|
$CmdCount = (Get-ChildItem -Path "$ScriptDir\commands" -Filter "*.md" -File).Count
|
|
206
206
|
|
|
207
|
-
#
|
|
207
|
+
# -- Helpers -------------------------------------------------------------------
|
|
208
208
|
function Install-Dir {
|
|
209
209
|
param([string]$Src, [string]$Dest, [string]$Label)
|
|
210
210
|
if (-not $Dest) { return }
|
|
@@ -223,7 +223,7 @@ function Install-Flat {
|
|
|
223
223
|
Write-Host " [OK] $Label (flattened) -> $Dest" -ForegroundColor Green
|
|
224
224
|
}
|
|
225
225
|
|
|
226
|
-
#
|
|
226
|
+
# -- Install -------------------------------------------------------------------
|
|
227
227
|
Write-Host "Installing components..." -ForegroundColor Bold
|
|
228
228
|
|
|
229
229
|
switch ($Target) {
|
|
@@ -321,12 +321,12 @@ Aider auto-loads this file. To bring full ECC context, run Aider with:
|
|
|
321
321
|
|
|
322
322
|
Full catalog: `.aider-ecc/agents/`, `.aider-ecc/skills/`, `.aider-ecc/commands/`, `.aider-ecc/rules/`.
|
|
323
323
|
|
|
324
|
-
Powered by Kodelyth ECC
|
|
324
|
+
Powered by Kodelyth ECC -- github.com/sifxprime/kodelyth-ecc
|
|
325
325
|
'@
|
|
326
326
|
$aiderText | Out-File -FilePath $ConventionsFile -Encoding UTF8
|
|
327
327
|
Write-Host " [OK] CONVENTIONS.md -> $ConventionsFile" -ForegroundColor Green
|
|
328
328
|
} else {
|
|
329
|
-
Write-Host " [skip] CONVENTIONS.md exists
|
|
329
|
+
Write-Host " [skip] CONVENTIONS.md exists -- not overwriting" -ForegroundColor Yellow
|
|
330
330
|
}
|
|
331
331
|
}
|
|
332
332
|
"kimi" {
|
|
@@ -342,15 +342,15 @@ Powered by Kodelyth ECC — github.com/sifxprime/kodelyth-ecc
|
|
|
342
342
|
$GeminiFile = "$Dest\GEMINI.md"
|
|
343
343
|
if (-not (Test-Path $GeminiFile)) {
|
|
344
344
|
$geminiText = @'
|
|
345
|
-
# Kodelyth ECC
|
|
345
|
+
# Kodelyth ECC -- Gemini CLI context
|
|
346
346
|
|
|
347
|
-
This project uses Kodelyth ECC
|
|
347
|
+
This project uses Kodelyth ECC -- 70 specialist agents, 194 skills, 97 commands, intent routing, and self-learning memory.
|
|
348
348
|
|
|
349
349
|
The full toolkit is installed under this directory:
|
|
350
350
|
|
|
351
|
-
- agents/
|
|
352
|
-
- skills/
|
|
353
|
-
- rules/
|
|
351
|
+
- agents/ -- specialist subagents (debug-detective, security-reviewer, devil-mode crew)
|
|
352
|
+
- skills/ -- domain knowledge files
|
|
353
|
+
- rules/ -- always-on coding standards + intent routing rule
|
|
354
354
|
|
|
355
355
|
For more: github.com/sifxprime/kodelyth-ecc
|
|
356
356
|
'@
|
|
@@ -360,13 +360,13 @@ For more: github.com/sifxprime/kodelyth-ecc
|
|
|
360
360
|
}
|
|
361
361
|
}
|
|
362
362
|
|
|
363
|
-
#
|
|
363
|
+
# -- Install bundle cheat sheet (if -Bundle was set) ---------------------------
|
|
364
364
|
if ($Bundle -and (Test-Path "$ScriptDir\bundles\$Bundle.md")) {
|
|
365
365
|
Copy-Item -Path "$ScriptDir\bundles\$Bundle.md" -Destination "$Dest\BUNDLE.md" -Force
|
|
366
366
|
Write-Host " [OK] Bundle cheat sheet ($Bundle) -> $Dest\BUNDLE.md" -ForegroundColor Green
|
|
367
367
|
}
|
|
368
368
|
|
|
369
|
-
#
|
|
369
|
+
# -- Write install state -------------------------------------------------------
|
|
370
370
|
$Version = if (Test-Path "$ScriptDir\VERSION") { Get-Content "$ScriptDir\VERSION" } else { "1.0.0" }
|
|
371
371
|
$StateFile = "$Dest\kodelyth-ecc-install-state.json"
|
|
372
372
|
$State = @{
|
|
@@ -380,7 +380,7 @@ $State = @{
|
|
|
380
380
|
$State | Out-File -FilePath $StateFile -Encoding UTF8
|
|
381
381
|
Write-Host " [OK] Install state -> $StateFile" -ForegroundColor Green
|
|
382
382
|
|
|
383
|
-
#
|
|
383
|
+
# -- Bundle-specific reminder --------------------------------------------------
|
|
384
384
|
if ($Bundle) {
|
|
385
385
|
Write-Host ""
|
|
386
386
|
switch ($Bundle) {
|
|
@@ -402,7 +402,7 @@ if ($Bundle) {
|
|
|
402
402
|
}
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
-
#
|
|
405
|
+
# -- Done ----------------------------------------------------------------------
|
|
406
406
|
Write-Host ""
|
|
407
407
|
Write-Host "Kodelyth ECC installed successfully!" -ForegroundColor Green
|
|
408
408
|
Write-Host ""
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kodelyth-ecc",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
4
4
|
"description": "Production-grade AI coding toolkit — 70 agents (incl. devil-mode adversarial crew), 194 skills, 97 commands, parallel multi-agent commands, semantic intent routing, self-learning memory, and a built-in MCP server (16 tools / 6 prompts / 377 resources) that bridges to Claude Desktop, LangGraph, AutoGen, CrewAI, and OpenAI Agents SDK. Works with Claude Code, Windsurf, Cursor, Codex, Antigravity, OpenCode, Cline, RooCode, Aider, Kimi, and Gemini CLI.",
|
|
5
5
|
"author": "Kodelyth <github.com/sifxprime>",
|
|
6
6
|
"license": "MIT",
|