wip: [01-stabilize] paused at task 1/1 - OCR Hallucination Immune logic via Semantic delta window and fret-isolation

This commit is contained in:
2026-03-29 22:08:40 +09:00
parent aca7bf592a
commit 2507de45d3
4289 changed files with 732689 additions and 28672 deletions

37
bootstrap.bat Normal file
View File

@@ -0,0 +1,37 @@
@echo off
setlocal
:: Prevent git from hanging on auth prompts for submodules
set GIT_TERMINAL_PROMPT=0
echo [1/4] Checking and Initializing Agent Config (.env.agent)...
if not exist ".agent\config\.env.agent" (
if exist ".agent\config\.env.agent.template" (
copy ".agent\config\.env.agent.template" ".agent\config\.env.agent" >nul
echo -^> Created .agent\config\.env.agent from template.
) else (
echo -^> Warning: Template missing.
)
) else (
echo -^> .env.agent already exists.
)
echo [2/4] Updating Git Submodules...
git submodule update --init --recursive
echo [3/4] Bypassing PowerShell and Installing AI Local Dependencies...
cd .agent\env
call npm install
cd ..\..
echo [4/4] Bypassing Global Installation (Zero-Pollution Enforced)
:: All tools are already safely installed locally in .agent\env\node_modules
echo.
echo ========================================================
echo [OK] Zero-Click Bootstrap Complete. AI Agents are ready!
echo --------------------------------------------------------
echo [!] ACTION REQUIRED:
echo Please open '.agent\config\.env.agent' to set up
echo your Vikunja Project ID and Gitea Wiki URL tracking.
echo ========================================================
endlocal