Click any step in the flow to jump straight to its explanation. Pick the flow for your case: code (you have the sources) or infrastructure (server audit).
Models 1 and 2. The audit reads the code; it never writes to it.
You are in the Flow — Code flow. The highlighted box in the diagram is the step you are reading.
audit\
├─ mysite_deep\
│ └─ svoaudit\ <- this audit's kit
└─ mysite_one\
└─ svoaudit\What separates one audit from another is the folder above. Two audits in the same folder would share one workspace — and one would see the other's material.🔴 Check the path. It is the one from when you measured; if the folder has moved since, fix it there. It is the one field that decides what gets read — and the kit does not let it slide: if the folder does not match what was measured, the audit stops and says why.
What is still blank is optional and yours to decide: folders that are a copy/version of the same code, and what is that way on purpose. We do not guess those — a guess of ours would be accepted without being read.
The AI bundled with your editor — Copilot, Gemini — does not work: it does not talk to our server and does not carry the kit's locks.
It can take hours. A ~18k-line project at the Deep level took about 2 hours. You do not need to watch the screen: every step is written to disk as it closes. If it has to stop — your account usage limit, a dropped connection, a power cut — you open AUDITAR.bat again and it carries on where it stopped. Nothing is lost and nothing is redone.
Models 3 and 4. Everything happens inside the server: nothing is downloaded to your machine.
You are in the Flow — Infrastructure flow. The highlighted box in the diagram is the step you are reading.
Only then, for outside confirmation, request the file at the URL matching where the folder actually is: curl -sI https://yourdomain/<path>/ALVO.md. A 200 convicts; a 404 does not acquit — the curl only tests the URL you typed, and a wrong guess returns 404 while the folder stays exposed elsewhere. Got a 200? Stop, move the folder and ask for a new token: the old one may have been read. The audit itself repeats this check before writing the report.
"read the ALVO.md and run the audit"
Here the read-only rule weighs even more: in production there is nobody to ask in the middle of the night, so a command that is not a read is not executed — it goes into the report as a recommendation.The full guide ships inside the ZIP (READ-FIRST.md). This page is the map — so you can see the whole path before starting.