Class_generator/restart-clean.bat
StillHammer 05142bdfbc Implement comprehensive AI text report/export system
- Add AIReportSystem.js for detailed AI response capture and report generation
- Add AIReportInterface.js UI component for report access and export
- Integrate AI reporting into LLMValidator and SmartPreviewOrchestrator
- Add missing modules to Application.js configuration (unifiedDRS, smartPreviewOrchestrator)
- Create missing content/chapters/sbs.json for book metadata
- Enhance Application.js with debug logging for module loading
- Add multi-format export capabilities (text, HTML, JSON)
- Implement automatic learning insights extraction from AI feedback
- Add session management and performance tracking for AI reports

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-26 21:24:13 +08:00

16 lines
318 B
Batchfile

@echo off
echo 🔄 Restarting Class Generator with clean shutdown...
REM Kill all Node.js processes
echo 🛑 Stopping all Node.js processes...
taskkill /F /IM node.exe /T 2>nul
REM Wait a moment
timeout /t 2 /nobreak >nul
REM Start the server
echo 🚀 Starting fresh server...
cd /d "%~dp0"
node server.js
pause