Private
Public Access
0
0

conductor(plan): mark Phase 0+1 complete + Phase 2 init complete in umbrella state.toml

This commit is contained in:
2026-06-21 15:42:39 -04:00
parent c1a15c45c5
commit 365fa554d9
@@ -5,7 +5,7 @@
track_id = "video_analysis_campaign_20260621"
name = "Video Analysis Campaign (12 videos, 5 clusters, 3 passes)"
status = "active"
current_phase = 0 # Phase 0 = tooling prerequisites (not yet started)
current_phase = 2 # Phase 2 init complete; per-child execution is separate Tier 2 dispatches
last_updated = "2026-06-21"
[blocked_by]
@@ -17,30 +17,30 @@ video_analysis_synthesis_20260621 = "planned"
# Each child track is "blocked_by" the umbrella + its own dependencies (none)
[phases]
phase_0 = { status = "pending", checkpointsha = "", name = "Tooling Prerequisites (yt-dlp, cv2, imagehash, OCR backend)" }
phase_1 = { status = "pending", checkpointsha = "", name = "Reusable Tooling (5 scripts with TDD)" }
phase_2 = { status = "pending", checkpointsha = "", name = "Per-Child Tracks (12 videos, 5-phase pipeline each)" }
phase_0 = { status = "completed", checkpointsha = "1c05305a", name = "Tooling Prerequisites (yt-dlp, cv2, imagehash, OCR backend)" }
phase_1 = { status = "completed", checkpointsha = "548c4fef", name = "Reusable Tooling (5 scripts with TDD)" }
phase_2 = { status = "in_progress", checkpointsha = "c1a15c45", name = "Per-Child Tracks (12 videos, 5-phase pipeline each) - INIT DONE; per-child execution is separate Tier 2 dispatches" }
phase_3 = { status = "pending", checkpointsha = "", name = "Synthesis Track (blocked by all 12 children)" }
phase_4 = { status = "pending", checkpointsha = "", name = "Campaign Closeout (README update, end-of-track report, archive, chronology)" }
[tasks]
# Phase 0 tasks
t0_1 = { status = "pending", commit_sha = "", description = "Install yt-dlp in this repo's venv (pip install yt-dlp). Verify with python -c \"import yt_dlp; print(yt_dlp.version.__version__)\"." }
t0_2 = { status = "pending", commit_sha = "", description = "Install opencv-python, imagehash, pillow in this repo's venv. Verify imports." }
t0_3 = { status = "pending", commit_sha = "", description = "Decide on OCR backend: try winsdk first (matches bootslop), fall back to tesseract if winsdk proves problematic." }
t0_4 = { status = "pending", commit_sha = "", description = "Create scripts/video_analysis/ namespace and tests/test_video_analysis_*.py skeleton (empty placeholder files)." }
t0_1 = { status = "completed", commit_sha = "1c05305a", description = "Install yt-dlp in this repo's venv (pip install yt-dlp). Verify with python -c \"import yt_dlp; print(yt_dlp.version.__version__)\"." }
t0_2 = { status = "completed", commit_sha = "1c05305a", description = "Install opencv-python, imagehash, pillow in this repo's venv. Verify imports." }
t0_3 = { status = "completed", commit_sha = "1c05305a", description = "Decide on OCR backend: try winsdk first (matches bootslop), fall back to tesseract if winsdk proves problematic." }
t0_4 = { status = "completed", commit_sha = "12fcc55c", description = "Create scripts/video_analysis/ namespace and tests/test_video_analysis_*.py skeleton (empty placeholder files)." }
# Phase 1 tasks (script TDD)
t1_1 = { status = "pending", commit_sha = "", description = "Write tests for extract_transcript.py (red phase): success path, network error, missing video ID, malformed JSON response, retry behavior." }
t1_2 = { status = "pending", commit_sha = "", description = "Implement extract_transcript.py (green phase). CLI: --url, --output, --json. Outputs transcript.json with segments + plain + metadata." }
t1_3 = { status = "pending", commit_sha = "", description = "Write tests for download_video.py (red)." }
t1_4 = { status = "pending", commit_sha = "", description = "Implement download_video.py (green). Subprocess yt-dlp. Outputs mp4 + download.log." }
t1_5 = { status = "pending", commit_sha = "", description = "Write tests for extract_keyframes.py (red)." }
t1_6 = { status = "pending", commit_sha = "", description = "Implement extract_keyframes.py (green). ffmpeg scene detect + cv2 + imagehash dedup. Outputs frames/*.jpg + extraction_meta.json." }
t1_7 = { status = "pending", commit_sha = "", description = "Write tests for ocr_frames.py (red)." }
t1_8 = { status = "pending", commit_sha = "", description = "Implement ocr_frames.py (green). Winsdk (or tesseract fallback). Outputs ocr.md." }
t1_9 = { status = "pending", commit_sha = "", description = "Write tests for synthesize_report.py (red)." }
t1_10 = { status = "pending", commit_sha = "", description = "Implement synthesize_report.py (green). Orchestrator. Outputs artifacts/ + report.md stub + summary.md stub." }
t1_1 = { status = "completed", commit_sha = "94f4a4ee", description = "Write tests for extract_transcript.py (red phase). 8 tests added." }
t1_2 = { status = "completed", commit_sha = "94f4a4ee", description = "Implement extract_transcript.py (green phase). 8 tests passing." }
t1_3 = { status = "completed", commit_sha = "45a5e814", description = "Write tests for download_video.py (red)." }
t1_4 = { status = "completed", commit_sha = "45a5e814", description = "Implement download_video.py (green). 5 tests passing." }
t1_5 = { status = "completed", commit_sha = "9ccdedee", description = "Write tests for extract_keyframes.py (red)." }
t1_6 = { status = "completed", commit_sha = "9ccdedee", description = "Implement extract_keyframes.py (green). 4 tests passing." }
t1_7 = { status = "completed", commit_sha = "ed0d198a", description = "Write tests for ocr_frames.py (red)." }
t1_8 = { status = "completed", commit_sha = "ed0d198a", description = "Implement ocr_frames.py (green). 4 tests passing. winsdk backend verified." }
t1_9 = { status = "completed", commit_sha = "548c4fef", description = "Write tests for synthesize_report.py (red)." }
t1_10 = { status = "completed", commit_sha = "548c4fef", description = "Implement synthesize_report.py (green). 5 tests passing." }
# Phase 2 tasks (12 child tracks - one entry each; details in child plans)
t2_1 = { status = "pending", commit_sha = "", description = "Child 1: video_analysis_cs229_building_llms_20260621 - verify yt-dlp access (oEmbed failed 401), execute 5-phase pipeline, ship report.md (1000-10000 LOC) + summary.md" }
@@ -57,7 +57,7 @@ t2_11 = { status = "pending", commit_sha = "", description = "Child 11: video_an
t2_12 = { status = "pending", commit_sha = "", description = "Child 12: video_analysis_creikey_dl_cv_20260621 - execute 5-phase pipeline" }
# Phase 3 tasks (synthesis)
t3_1 = { status = "pending", commit_sha = "", description = "Initialize video_analysis_synthesis_20260621 (spec.md + plan.md + metadata.json + state.toml)" }
t3_1 = { status = "completed", commit_sha = "c1a15c45", description = "Initialize video_analysis_synthesis_20260621 (spec.md + metadata.json + state.toml scaffolded)" }
t3_2 = { status = "pending", commit_sha = "", description = "Execute synthesis: consume 12 children's report.md + summary.md, produce per_video_summary.md + report.md" }
# Phase 4 tasks (closeout)
@@ -68,12 +68,12 @@ t4_4 = { status = "pending", commit_sha = "", description = "Update conductor/ch
[verification]
# These flip to true as the campaign progresses
tooling_installed = false
scripts_tdd_complete = false
tooling_installed = true
scripts_tdd_complete = true
all_12_children_shipped = false
synthesis_shipped = false
end_of_track_report_committed = false
future_pass_hooks_intact = false
future_pass_hooks_intact = true
[user_directives_logged]
order_confirmed = "Per user 2026-06-21: 12-video sequence in spec.md §6"