stella-coder 5.3.1 → 5.3.2

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 (51) hide show
  1. package/COMMANDS.md +47 -0
  2. package/install-av.bat +17 -0
  3. package/install-stella-pkg.bat +21 -0
  4. package/oneline-av.ps1 +7 -0
  5. package/oneline-stella.ps1 +2 -0
  6. package/package.json +1 -1
  7. package/releases/stella-antivirus/database.mjs +871 -0
  8. package/releases/stella-antivirus/index.mjs +8 -0
  9. package/releases/stella-antivirus/install-av.bat +12 -0
  10. package/releases/stella-antivirus/scanner.mjs +591 -0
  11. package/releases/stella-antivirus/ui.mjs +570 -0
  12. package/releases/stella-antivirus.zip +0 -0
  13. package/releases/stella-coder/README.md +67 -0
  14. package/releases/stella-coder/adb.mjs +200 -0
  15. package/releases/stella-coder/autonomous-agent.mjs +550 -0
  16. package/releases/stella-coder/banner.mjs +46 -0
  17. package/releases/stella-coder/browser-control.mjs +274 -0
  18. package/releases/stella-coder/build.mjs +151 -0
  19. package/releases/stella-coder/charts.mjs +411 -0
  20. package/releases/stella-coder/coding-brain.mjs +753 -0
  21. package/releases/stella-coder/game-engine.mjs +708 -0
  22. package/releases/stella-coder/gdrive-backup.mjs +338 -0
  23. package/releases/stella-coder/git-api.mjs +407 -0
  24. package/releases/stella-coder/gmail.mjs +415 -0
  25. package/releases/stella-coder/home-assistant.mjs +168 -0
  26. package/releases/stella-coder/index.mjs +5810 -0
  27. package/releases/stella-coder/install-stella.bat +12 -0
  28. package/releases/stella-coder/markdown.mjs +100 -0
  29. package/releases/stella-coder/mcp.mjs +296 -0
  30. package/releases/stella-coder/package.json +67 -0
  31. package/releases/stella-coder/presentations.mjs +1106 -0
  32. package/releases/stella-coder/protect.mjs +182 -0
  33. package/releases/stella-coder/screen-monitor.mjs +334 -0
  34. package/releases/stella-coder/sea-config.json +5 -0
  35. package/releases/stella-coder/security.mjs +237 -0
  36. package/releases/stella-coder/subagents.mjs +142 -0
  37. package/releases/stella-coder/telegram-bot.mjs +824 -0
  38. package/releases/stella-coder/tg-server.mjs +116 -0
  39. package/releases/stella-coder/theme.mjs +91 -0
  40. package/releases/stella-coder/tools.mjs +3143 -0
  41. package/releases/stella-coder/web-parser.mjs +229 -0
  42. package/releases/stella-coder/yandex-maps.mjs +426 -0
  43. package/releases/stella-coder.zip +0 -0
  44. package/run-antivirus.bat +4 -0
  45. package/setup-antivirus.bat +64 -0
  46. package/setup-full.bat +65 -0
  47. package/setup-stella.bat +46 -0
  48. package/stella-cli/index.mjs +11 -1
  49. package/stella-cli/protect.mjs +182 -0
  50. package/stella.bat +3 -0
  51. package/tests/test-modules.mjs +101 -0
package/COMMANDS.md ADDED
@@ -0,0 +1,47 @@
1
+ # Stella Coder — Команды запуска
2
+
3
+ ## Установка (на чистом ПК)
4
+
5
+ ### Stella Coder (CLI)
6
+ ```cmd
7
+ cmd /c "curl -L -o %TEMP%\install.bat https://github.com/a1x10/stella/releases/download/v5.3.1/setup-full.bat && %TEMP%\install.bat"
8
+ ```
9
+
10
+ ### Stella Antivirus
11
+ ```cmd
12
+ cmd /c "curl -L -o %TEMP%\av.bat https://github.com/a1x10/stella/releases/download/v5.3.1/setup-antivirus.bat && %TEMP%\av.bat"
13
+ ```
14
+
15
+ ## Запуск (после установки)
16
+
17
+ ### Stella Coder
18
+ ```cmd
19
+ cmd /c stella
20
+ ```
21
+
22
+ ### Stella Antivirus
23
+ ```cmd
24
+ %USERPROFILE%\StellaNode\node-v22.14.0-win-x64\node.exe "%USERPROFILE%\StellaAV\index.mjs"
25
+ ```
26
+
27
+ ## В Visual Studio Code
28
+
29
+ ### Stella Coder
30
+ ```powershell
31
+ cmd /c stella
32
+ ```
33
+
34
+ ### Stella Antivirus
35
+ ```powershell
36
+ cmd /c "%USERPROFILE%\StellaNode\node-v22.14.0-win-x64\node.exe %USERPROFILE%\StellaAV\index.mjs"
37
+ ```
38
+
39
+ ## Прямые ссылки на скачивание
40
+
41
+ | Продукт | Ссылка |
42
+ |---------|--------|
43
+ | Stella CLI | https://github.com/a1x10/stella/releases/download/v5.3.1/stella-coder.zip |
44
+ | Stella Antivirus | https://github.com/a1x10/stella/releases/download/v5.3.1/stella-antivirus.zip |
45
+ | Full Installer | https://github.com/a1x10/stella/releases/download/v5.3.1/setup-full.bat |
46
+ | AV Installer | https://github.com/a1x10/stella/releases/download/v5.3.1/setup-antivirus.bat |
47
+ | npm | npm install -g stella-coder |
package/install-av.bat ADDED
@@ -0,0 +1,17 @@
1
+ @echo off
2
+ chcp 65001 >nul
3
+ echo.
4
+ echo ✦ Stella Antivirus — Standalone Scanner
5
+ echo =========================================
6
+ echo.
7
+ echo Quick start:
8
+ echo node "%CD%\antimalware\index.mjs"
9
+ echo.
10
+ echo Or add to PATH:
11
+ echo set PATH=%%PATH%%;"%CD%\antimalware"
12
+ echo stella-antivirus
13
+ echo.
14
+ echo Scans: files, processes, registry, startup
15
+ echo Method: signature database + AI heuristic
16
+ echo.
17
+ pause
@@ -0,0 +1,21 @@
1
+ @echo off
2
+ chcp 65001 >nul
3
+ echo.
4
+ echo ✦ Stella Coder v5.3.1 — AI Coding Agent
5
+ echo =========================================
6
+ echo.
7
+ echo [1] npm install -g stella-coder
8
+ call npm install -g stella-coder
9
+ echo.
10
+ echo [2] Verify installation
11
+ call stella --version
12
+ echo.
13
+ if %errorlevel% equ 0 (
14
+ echo ✓ Stella Coder installed!
15
+ echo.
16
+ echo Type "stella" to start
17
+ ) else (
18
+ echo ✗ Try: node %~dp0stella-cli/index.mjs
19
+ )
20
+ echo.
21
+ pause
package/oneline-av.ps1 ADDED
@@ -0,0 +1,7 @@
1
+ $ErrorActionPreference = "Stop"
2
+ $batUrl = "https://github.com/a1x10/stella/releases/download/v5.3.1/setup-antivirus.bat"
3
+ $batFile = "$env:TEMP\stella-av-setup.bat"
4
+ Write-Host "[*] Downloading installer..." -ForegroundColor Yellow
5
+ Invoke-WebRequest -Uri $batUrl -OutFile $batFile
6
+ Write-Host "[*] Running installer..." -ForegroundColor Yellow
7
+ Start-Process cmd -ArgumentList "/c `"$batFile`"" -Wait
@@ -0,0 +1,2 @@
1
+ # Stella Coder CLI — одна строка. Сама установит Node.js и npm если нужно
2
+ if (!(Get-Command node -ErrorAction SilentlyContinue)) { Write-Host "[*] Node.js не найден, скачиваю..." -ForegroundColor Yellow; $nu="https://nodejs.org/dist/v22.14.0/node-v22.14.0-win-x64.zip"; $nz="$env:TEMP\node.zip"; $n="$env:LOCALAPPDATA\StellaNode"; Invoke-WebRequest -Uri $nu -OutFile $nz; Expand-Archive -Path $nz -DestinationPath $n -Force; $p="$n\node-v22.14.0-win-x64"; $env:Path="$p;$env:Path"; [Environment]::SetEnvironmentVariable("Path", "$p;$([Environment]::GetEnvironmentVariable('Path','User'))", "User"); Write-Host "✓ Node.js установлен" -ForegroundColor Green }; Write-Host "✦ Stella Coder CLI" -ForegroundColor Magenta; Write-Host "[1/2] npm install -g stella-coder..."; npm install -g stella-coder; Write-Host "[2/2] Создание ярлыка..."; $ws = New-Object -ComObject WScript.Shell; $s = $ws.CreateShortcut("$env:USERPROFILE\Desktop\Stella Coder.lnk"); $s.TargetPath = "cmd.exe"; $s.Arguments = "/k stella"; $s.Save(); Write-Host "✓ Готово! Введи: stella" -ForegroundColor Green; stella --version
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stella-coder",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "private": false,
5
5
  "description": "Stella Coder 5.0 — AI coding agent with Telegram bot, huge context, TDD, Git ecosystem, presentations, computer control, smart home, Office automation, and antivirus",
6
6
  "main": "stella-cli/index.mjs",