6d9df5bf2f
Read the workpc workers against the homesrv orchestrator and checked the first-pass audit against source. Report only, no code changed. Adds 4 P0, 6 P1, and 13 P2 findings to AUDIT.md, most of them in the seam between the two repos: - worker_scene reads dialogue `speaker` as a local id, but the orchestrator already rewrote it to a character_id, so all narration says "Someone" - the script verifier fails valid narration on sentence-initial capitals and on short quotes, which halts the chapter - correctness flags block TTS with no path to clear them when GATES is off - session_manager can orphan a llama-server that keeps its VRAM Confirms four first-pass claims in source: tracklet gender enum, missing action evidence, dropped verifier feedback, 409 lease stealing. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2.8 KiB
2.8 KiB
HANDOFF: audit second pass (2026-08-11)
What was asked
Review AUDIT.md (untracked, first pass, 565 lines) and add anything missing.
What was done
Read both halves of the pipeline and checked the first pass against source. No code changed. No GPU work, no pipeline run, no tests executed.
Files read in full:
- workpc:
worker_vision.py(1008),worker_identity.py(322),worker_script.py(300),worker_scene.py(170),worker_tts.py(241),session_manager.py(238),transport.py(216),worker_crop.py(first 120 of 359). - homesrv
/mnt/server/home/kami/docker-apps/manga-infra/orchestrator/:service.py(2048),db.py(815),session_proxy.py(302),correctness.py(116),tracklets.py(121),minio_layout.py(105),grouping.py(75).
Result: AUDIT.md grew from 565 to 745 lines. New section ## Second-pass findings (2026-08-11)
at line 566. 4 new P0, 6 new P1, 13 P2, plus 5 additions to the Phase 1 list and 1 to the
acceptance criteria.
Four first-pass claims were confirmed in source and are not restated in the new section:
- tracklet gender enum:
tracklets.py:43usesmale|female, vision emitsm|f|unknown. - missing action evidence:
worker_scene.py:85emitsaction,correctness.py:91readsactions. - dropped verifier feedback:
worker_script.py:13-23defines neither field. - 409 lease stealing:
session_proxy.py:40-49.
Top 4 new findings
worker_scene.py:78readsspeakeras a local id, butcorrectness.py:47already rewrote it to a character_id. Every lookup returns None, so all narration saysSomeone.correctness.py:106-115fails valid narration on sentence-initial capitals and on short quotes, andservice.py:1384-1386turns that into a halted chapter.service.py:1419-1423blocks TTS on correctness flags that only/review/approvecan clear, whileGATESdefaults to off (service.py:312).session_manager.py:108-119can orphan a llama-server that keeps its VRAM.
Still open
- Nothing from this session is half-finished.
AUDIT.mdis complete as written. - No finding has been fixed. All are report-only.
AUDIT.mdis still untracked as of this session's start. Decide whether it belongs in git.- Prose linter reports ~97 style hits in
AUDIT.md. Almost all are in the first-pass sections (lines 1-565), which were left as the author wrote them. - Carried over from the earlier reconstruction handoff of the same day:
.venv/is gone. Rebuild it, then install the ROCm torch wheel the way workpc had it.dots.tts/andlegacy/are not recoverable from transcripts.RESUME_SPEC.md,pipeline-design-notes.md, andspec-v2.mdare unrecoverable.
Next command
cd /home/kami/Programs/n8n-worker
sed -n '566,745p' AUDIT.md # read the new section
Then pick the Phase 1 order at AUDIT.md:511 as amended at the end of the new section.