Files
manual_slop/conductor/tracks/metadata_ssdl_defusing_20260624/state.toml
T
ed 84c0b4ecc4 conductor(campaign): metadata_ssdl_defusing_20260624 - 3-child SSDL defusing campaign
Campaign: address the parent code_path_audit_20260607 Finding 1 (CRITICAL)
Metadata 4.01e22 effective codepaths via 3 SSDL techniques.

3 children, sequential, with budget gates:
1. metadata_nil_sentinel_20260624 (>= 10% drop): introduce
   NIL_METADATA sentinel + migrate 6 nil-check functions.
2. metadata_generational_handle_20260624 (>= 20% drop,
   BLOCKED_BY 1): wrap Metadata in (index, generation) handle;
   collapse lifetime branches to 1 lookup + 1 cmp.
3. metadata_field_cache_20260624 (>= 30% drop, BLOCKED_BY 2):
   MetadataFieldCache keyed by (handle.index, field_name);
   123 string-keyed entry.get('key', default) sites become
   cache lookups.

Each child has its own spec/plan/metadata/state. Budget gate
after each child: re-measure effective codepaths; if drop < threshold,
PAUSE the campaign and report to user.

End-of-campaign TRACK_COMPLETION captures the cumulative reduction
vs the 4.01e22 baseline. Deferred follow-up: apply the same
3 SSDL primitives to the 4 other dict[str, Any] aliases
(FileItem, CommsLogEntry, HistoryMessage, ToolDefinition, ToolCall).

16 files committed: 4 directories x 4 files each (spec, plan,
metadata, state).
2026-06-24 14:53:40 -04:00

67 lines
3.4 KiB
TOML

# Campaign state for metadata_ssdl_defusing_20260624
# 3-child campaign; sequential with budget gates.
# Tier 2 to execute per conductor/workflow.md.
[meta]
track_id = "metadata_ssdl_defusing_20260624"
name = "Metadata SSDL Defusing Campaign"
status = "active"
current_phase = 0
last_updated = "2026-06-24"
[parent]
# Independent campaign (not part of an umbrella)
[blocked_by]
code_path_audit_20260607 = "shipped"
[blocks]
# This campaign blocks no other tracks. It is an exploratory campaign.
[child_tracks]
metadata_nil_sentinel_20260624 = { status = "pending", short_name = "child_1_nil_sentinel" }
metadata_generational_handle_20260624 = { status = "pending", short_name = "child_2_handle" }
metadata_field_cache_20260624 = { status = "pending", short_name = "child_3_cache" }
[phases]
phase_1 = { status = "pending", checkpointsha = "", name = "Child 1: Nil Sentinel (with budget gate >= 10% drop)" }
phase_2 = { status = "pending", checkpointsha = "", name = "Child 2: Generational Handle (with budget gate >= 20% drop)" }
phase_3 = { status = "pending", checkpointsha = "", name = "Child 3: Field Cache (with budget gate >= 30% drop)" }
phase_4 = { status = "pending", checkpointsha = "", name = "End-of-Campaign Report" }
[tasks]
# Phase 1
t1_1 = { status = "pending", commit_sha = "", description = "Tier 2 ships child 1 per its own plan.md" }
t1_2 = { status = "pending", commit_sha = "", description = "Run child 1 budget gate (>= 10% drop); pause if not met" }
t1_3 = { status = "pending", commit_sha = "", description = "Re-run full batched test suite; verify all 11 tiers PASS" }
t1_4 = { status = "pending", commit_sha = "", description = "Capture post-child-1 measurement in campaign_measurements_20260624.md" }
# Phase 2
t2_1 = { status = "pending", commit_sha = "", description = "Tier 2 ships child 2 per its own plan.md" }
t2_2 = { status = "pending", commit_sha = "", description = "Run child 2 budget gate (>= 20% drop); pause if not met" }
t2_3 = { status = "pending", commit_sha = "", description = "Re-run full batched test suite" }
t2_4 = { status = "pending", commit_sha = "", description = "Append post-child-2 measurement to campaign log" }
# Phase 3
t3_1 = { status = "pending", commit_sha = "", description = "Tier 2 ships child 3 per its own plan.md" }
t3_2 = { status = "pending", commit_sha = "", description = "Run child 3 budget gate (>= 30% drop); pause if not met" }
t3_3 = { status = "pending", commit_sha = "", description = "Re-run full batched test suite" }
t3_4 = { status = "pending", commit_sha = "", description = "Append post-child-3 measurement to campaign log" }
# Phase 4
t4_1 = { status = "pending", commit_sha = "", description = "Write TRACK_COMPLETION_metadata_ssdl_defusing_20260624.md" }
t4_2 = { status = "pending", commit_sha = "", description = "Update this state.toml to status=completed" }
t4_3 = { status = "pending", commit_sha = "", description = "Update conductor/tracks.md with campaign + 3 child rows" }
[verification]
vc1_all_3_children_shipped = false
vc2_end_of_campaign_report_exists = false
vc3_full_batched_suite_green = false
vc4_audit_gates_clean = false
vc5_no_new_top_level_src_files = false
vc6_3_behavioral_tests_pass = false
[measurements]
# Format: baseline_4.01e22 = sum of 2^branches across all 752 Metadata consumers
# Populated by Tier 2 as children ship
pre_campaign = 4.01e+22
post_child_1 = null
post_child_2 = null
post_child_3 = null