Lucy v2: voice-core-Adapter, VAD, Overlay-Feinschliff + Projekt-Dateien

- voice-core/: STT/TTS hinter Engine-Interfaces (pocket/box austauschbar), SpeechScheduler ausgelagert
- useVAD (Freisprechen, adaptive RMS-Schwelle), usePushToTalk, sentiment
- Avatar3D/config/styles-Feinschliff, AuraGlow
- electron.vite.config, tsconfig, Starter-BATs, .gitignore (out/, avatar.vrm)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Hitonabi
2026-07-02 10:29:22 +02:00
parent 2db839aef9
commit aff0105700
24 changed files with 727 additions and 59 deletions
+12
View File
@@ -0,0 +1,12 @@
@echo off
chcp 65001 >nul
REM Hygiene: Recon-Log mit Token entfernen
del /q "F:\Coding Stuff\mission-control-2\box_recon.log" 2>nul
echo Beende laufende Lucy-Instanz (pocket_server :8130 + Electron/Vite)...
powershell -NoProfile -ExecutionPolicy Bypass -Command "Get-CimInstance Win32_Process | Where-Object { $_.CommandLine -match 'pocket_server:app|lucy-desktop|electron-vite' } | ForEach-Object { Write-Output ('kill ' + $_.ProcessId + ' ' + $_.Name); Stop-Process -Id $_.ProcessId -Force -ErrorAction SilentlyContinue }"
timeout /t 2 >nul
echo.
echo Starte Lucy neu (frischer Voice-Server + Client mit erweitertem Umlaut-Fix)...
start "" "F:\Coding Stuff\mission-control-2\client\lucy-desktop\start-lucy.cmd"
timeout /t 3 >nul
echo Fertig.