The v2 postfix DSL parser (DSL_WORD_ARITY_V2, _atom, to_dsl_v2, parse_dsl_v2)
was implemented during the 14-phase DSL plan but never reached production:
run_audit() (line ~1217 after this change) only writes .md files (AUDIT_REPORT.md
plus per-aggregate markdowns via to_markdown/to_tree), never .dsl files. The DSL
parser carried latent arity bugs (DSL_WORD_ARITY_V2 declared 5 for 'result-coverage'
but writer emits 4; 4 for 'type-alias-coverage' but writer emits 3) which would
have caused silent parse failures.
Also removed the now-unused 'import re' statement (was only used by parse_dsl_v2).
The 'from datetime import date as date_mod' is retained (still used at line ~1259,
1275, 1291 in the markdown renderer).
Tests deleted in lockstep:
- tests/test_code_path_audit_phase78.py: test_dsl_word_arity_v2_14_new_words
- tests/test_code_path_audit_phase89.py: test_to_dsl_v2_includes_aggregate_kind_section,
test_parse_dsl_v2_round_trip_aggregate_kind, test_parse_dsl_v2_malformed
Verification:
- grep -c 'to_dsl_v2|parse_dsl_v2|DSL_WORD_ARITY_V2' src/code_path_audit.py = 0
- 127 of 127 remaining tests pass (was 131; -4 tests deleted)
The import statement appeared twice in quick succession (lines 655 and 658).
Both were identical and contributed nothing. Removed one. No functional change.
Verification:
- grep -c '^import json' src/code_path_audit.py = 1
- uv run python -c 'from src import code_path_audit' returns OK
- 124 tests in tests/test_code_path_audit*.py pass
Resolves audit_weak_types.py --strict regression (117 vs baseline 112 -> 104).
The regression was in src/openai_schemas.py (10 sites) and src/mcp_tool_specs.py
(4 sites), both files added after the 2026-06-21 baseline. JsonValue is the
canonical JSON-serializable data TypeAlias from src/type_aliases.py:22 and is a
structural superset of dict[str, Any], so consumers expecting the legacy shape
are unaffected. All 30 existing tests in tests/test_openai_schemas.py and
tests/test_mcp_tool_specs.py continue to pass.
Spec WHERE for t1.1 referenced code_path_audit*.py files but those modules
report 0 weak type findings per the audit (they use dict[str, int],
dict[str, dict], etc., not dict[str, Any]); see plan.md investigation note.
The video_analysis tracks were moved from conductor/tracks/ to conductor/archive/analysis/ in commit 964d7edd. The .gitignore patterns need to point to the new location so the gitignored files (videos, transcripts, samples) continue to be excluded from tracking.
Updated:
- conductor/tracks/video_analysis_*/artifacts/*.mp4 -> conductor/archive/analysis/video_analysis_*/artifacts/*.mp4
- conductor/tracks/video_analysis_*/artifacts/*.vtt -> conductor/archive/analysis/video_analysis_*/artifacts/*.vtt
- conductor/tracks/video_analysis_deob_warmup_20260621/samples -> conductor/archive/analysis/video_analysis_deob_warmup_20260621/samples
Per the 3-step archiving convention:
1. Move the folders (done in 964d7edd)
2. Update tracks.md (this commit)
The 22 video_analysis tracks are now registered in the Archived section at the bottom of tracks.md. The Active Tracks table (rows 1-30) remains unchanged for the ongoing tracks (qwen_llama_grok, data_oriented_error_handling, mcp_architecture_refactor, etc.).
The 3-pass video analysis research campaign is officially CLOSED as of 2026-06-23. The campaign closeout report is at docs/reports/CAMPAIGN_CLOSE_OUT_video_analysis_20260621.md.
The 3-pass video analysis research campaign is CLOSED. All 25 tracks are archived at conductor/archive/analysis/.
22 video_analysis tracks moved:
- 1 Pass 1 umbrella (video_analysis_campaign_20260621)
- 12 Pass 1 video reports (cs229, probability_logic, entropy_epiplexity, score_dynamics, platonic, free_lunches, generic_systems, brain, neural_dynamics, multiscale, cs336, creikey)
- 1 Pass 1 synthesis (video_analysis_synthesis_20260621)
- 1 Pass 2 umbrella (video_analysis_deob_20260621)
- 4 Pass 2 sub-tracks (warmup, lexicon, pilot, apply)
- 3 sub-tracks (lexicon_v2, c11_reference, pass3)
The 3 sub-tracks of video_analysis_deob_*_20260623 are the v2 corrective patch, the C11 reference, and Pass 3.
All post-move paths:
- conductor/archive/analysis/video_analysis_campaign_20260621/
- conductor/archive/analysis/video_analysis_<slug>_20260621/ (x12)
- conductor/archive/analysis/video_analysis_synthesis_20260621/
- conductor/archive/analysis/video_analysis_deob_20260621/
- conductor/archive/analysis/video_analysis_deob_<warmup|lexicon|pilot|apply>_20260621/
- conductor/archive/analysis/video_analysis_deob_<lexicon_v2|c11_reference|pass3>_20260623/
2728 files renamed (mostly artifacts/frames/*.jpg from the Pass 1 video acquisitions).
Per user 2026-06-23: 'ok write a report to cohesively wrap up this campaign. Lets move all the video analaysis into archive/analysis.' The campaign is officially CLOSED.
All 11 tasks completed; all 14 verification flags true. The 3-pass research campaign ends here. The user's 'ok write a report to cohesively wrap up this campaign' is the formal approval; Pass 3 is SHIPPED.
Main C11 reference: 15 sections. ~700 LOC. Synthesizes the duffle/forth bootslop/Pikuma conventions with the raddbg fallback. Includes the per-language << / >> rendering for C11 (per the v2 lexicon). Hands off to Pass 3 as the primary C11 style guide. Sections: Overview, Naming conventions, Type system, Memory ordering, Inlining, Section placement, Macro style, Slice/arena, Comment style, Build flags, Error handling, Per-language rendering, raddbg fallback, Example program, Cross-references.
5 sections. ~80 LOC. PRIMARY (user's own project): 4 forth bootslop attempt_1 files (duffle.amd64.win32.h, main.c, microui.c, microui.h). Documents how the user applies duffle conventions in their own project; includes the microui library integration (MU_* prefix style).
3 sections. ~50 LOC. PRIMARY (forth references): 2 files (jombloforth.asm, jombloforth.f). Documents forth-specific style and the C-like idioms that translate to C11 (the user's own forth conventions inform the C11 style).
Both state.toml files updated to status = 'completed':
- video_analysis_deob_apply_20260621/state.toml: Pass 2 SHIPPED; 35 atomic commits; 14,413 LOC across 33 deliverables; 4 + 3 verification criteria met; 12 refinements + 8 gaps documented; user approved 2026-06-23 ('ok awesome')
- video_analysis_deob_lexicon_v2_20260623/state.toml: v2 corrective pass SHIPPED; 7 atomic commits; 17 v1->v2 changes applied; user approved 2026-06-23 ('ok awesome')
Pass 2 is COMPLETE. Pass 3 (C11/Python projection) is unblocked. The 6 open questions for Pass 3 are answered:
- Applied domain = C11 (raddbg/duffel/pikuma/forth bootslop) or Python (manual_slop)
- User-specific forms = annotation if not code; pseudo sectr lang needs adapting in code
- Indefinites use placeholder scheme (float/integer/Scalar); float64 only when target resolution matters
- Template notation B as default; C++/Odin/Jai opt-in; per-language << >> renderings documented
- Criteria are OK
- Pass 3 = markdown docs + code files (may or may not run)
Awaiting user's scoping decision for Pass 3.
3 principled maps reshaped per v2 corrections.
Map 1 (Curry-Howard): proof/construction distinction preserved; construction is a sub-type tag, not a replacement (per user 2026-06-23).
Map 2 (Types=Kinds, v2): Removed the 'Sets' leg (set is a data structure, not an enumerable type). Documented that 'kind' (lowercase) is reserved for enumeration types: components, DAG nodes, fat structs. Type/Genus/Kind are analogous (per user 2026-06-23).
Map 3 (Procedures=Words, v2): Removed the 'Functions' leg. function (declarative/math) and procedure (imperative/CS) are distinct concepts (per user 2026-06-23).
Maps 4, 5, 6 unchanged.