From 2d466de364e2e37564760244434a3e35202fcf42 Mon Sep 17 00:00:00 2001 From: sarahxsanders Date: Fri, 4 Sep 2026 11:35:24 -0400 Subject: [PATCH] fix(audit): seed the capture-fires-on-success check The comprehensive audit skill gains a fourth event-capture check that flags completion events firing on submit intent rather than on a confirmed server response. Its ledger is pre-seeded here, so the id has to exist in the seed or audit_resolve_checks rejects it as unknown and the check reports nothing. Pairs with the context-mill change that adds the check itself. Generated-By: PostHog Desktop Task-Id: 4fd61d6e-eb4e-498e-abfd-1d0b60d95a63 --- src/lib/programs/audit/seed.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/programs/audit/seed.ts b/src/lib/programs/audit/seed.ts index 017055f1d..ca2511160 100644 --- a/src/lib/programs/audit/seed.ts +++ b/src/lib/programs/audit/seed.ts @@ -78,6 +78,12 @@ export const AUDIT_SEED_CHECKS: AuditCheck[] = [ label: 'Key activation events captured', status: 'pending', }, + { + id: 'capture-fires-on-success', + area: 'Event Capture', + label: 'Completion events fire on success, not intent', + status: 'pending', + }, { id: 'live-data-findings', // Area is capped at COL_AREA_WIDTH (18) in the checks viewer and never