← back to Japan Enrich
auto-data-snapshot: 2026-09-17T17:25:36 (19 data files) — AbramsEgo Bertha Designer-Wallcoverings SDCC-Stories _scratch/dwaa53-viewer/server.js.bak-tk11438
52e6ca8c944764942508572eca477c545bd2900c · 2026-09-17 17:27:41 -0700 · auto-commit-fleet
Files touched
M AbramsEgoM BerthaM Designer-WallcoveringsM SDCC-StoriesA _scratch/dwaa53-viewer/server.js.bak-tk11438M chief-of-operationsM designerwallcoveringsM dw-cadence-next2M exo-cluster-watchdogM fentucci-naturalsM gmc-titlefixM marketing-command-centerM rentvM sku-check-skillA ticket-monitor/proofs.jsonM ticket-monitor/state.jsonM ticket-systemM tk11438-postgres-migrationM vendor-recrawl-dispatcher
Diff
commit 52e6ca8c944764942508572eca477c545bd2900c
Author: auto-commit-fleet <steve@designerwallcoverings.com>
Date: Thu Sep 17 17:27:41 2026 -0700
auto-data-snapshot: 2026-09-17T17:25:36 (19 data files) — AbramsEgo Bertha Designer-Wallcoverings SDCC-Stories _scratch/dwaa53-viewer/server.js.bak-tk11438
---
AbramsEgo | 2 +-
Bertha | 2 +-
Designer-Wallcoverings | 2 +-
SDCC-Stories | 2 +-
_scratch/dwaa53-viewer/server.js.bak-tk11438 | 69 ++++++++++++
chief-of-operations | 2 +-
designerwallcoverings | 2 +-
dw-cadence-next2 | 2 +-
exo-cluster-watchdog | 2 +-
fentucci-naturals | 2 +-
gmc-titlefix | 2 +-
marketing-command-center | 2 +-
rentv | 2 +-
sku-check-skill | 2 +-
ticket-monitor/proofs.json | 98 +++++++++++++++++
ticket-monitor/state.json | 156 +++++++++++++++++++++++----
ticket-system | 2 +-
tk11438-postgres-migration | 2 +-
vendor-recrawl-dispatcher | 2 +-
19 files changed, 319 insertions(+), 36 deletions(-)
diff --git a/AbramsEgo b/AbramsEgo
index 9e84e93..af5b7b5 160000
--- a/AbramsEgo
+++ b/AbramsEgo
@@ -1 +1 @@
-Subproject commit 9e84e93fc7dc5456a1759481fa87b4a9a0690c63
+Subproject commit af5b7b5344d0be3fcbb8ce9b1dd5cacc47f06c92
diff --git a/Bertha b/Bertha
index c13ebe7..ce85d99 160000
--- a/Bertha
+++ b/Bertha
@@ -1 +1 @@
-Subproject commit c13ebe7c58ea80bd5503283398806f8558bb6e5b
+Subproject commit ce85d9935b0ecbbaa86657644f1415954647d089
diff --git a/Designer-Wallcoverings b/Designer-Wallcoverings
index 40ecde2..1e7d155 160000
--- a/Designer-Wallcoverings
+++ b/Designer-Wallcoverings
@@ -1 +1 @@
-Subproject commit 40ecde25104dfc2cd4f026c5b11c7cd87ca1d662
+Subproject commit 1e7d155f08571e5875d99a15af6c63f9485b9c13
diff --git a/SDCC-Stories b/SDCC-Stories
index 57570ab..2dfaf8b 160000
--- a/SDCC-Stories
+++ b/SDCC-Stories
@@ -1 +1 @@
-Subproject commit 57570ab2a955dca5aafd7ecb01aeb3186dd8cf12
+Subproject commit 2dfaf8b5fbefc9be529c1ba0c5d58bb6d794468a
diff --git a/_scratch/dwaa53-viewer/server.js.bak-tk11438 b/_scratch/dwaa53-viewer/server.js.bak-tk11438
new file mode 100644
index 0000000..5f11395
--- /dev/null
+++ b/_scratch/dwaa53-viewer/server.js.bak-tk11438
@@ -0,0 +1,69 @@
+#!/usr/bin/env node
+// Ephemeral viewer for the 53 orphan Jeffrey Stevens DWAA-5##### products (TK-10168 / DWAA-53 decision).
+// Basic-auth admin/DW2024!, OS-assigned free port. Read-only.
+const http = require('http');
+const { Pool } = require('pg');
+const pool = new Pool({ connectionString: process.env.DATABASE_URL || 'postgresql://dw_admin@127.0.0.1:5432/dw_unified' });
+const AUTH = 'Basic ' + Buffer.from('admin:DW2024!').toString('base64');
+const STORE = 'designer-laboratory-sandbox';
+const esc = s => String(s ?? '').replace(/[&<>"]/g, c => ({ '&': '&', '<': '<', '>': '>', '"': '"' }[c]));
+
+async function rows() {
+ const { rows } = await pool.query(`
+ SELECT variant_sku, title, status,
+ CASE WHEN body_html IS NULL OR body_html='' OR body_html ILIKE '%not found%' THEN 'broken/empty' ELSE 'has body' END AS body_state,
+ COALESCE(NULLIF(tags,''),'—') AS tags,
+ COALESCE(split_part(shopify_id,'/',5),'') AS pid,
+ CASE WHEN title ILIKE '%page not found%' THEN 'BROKEN' ELSE 'NAMED' END AS bucket
+ FROM shopify_products
+ WHERE variant_sku ILIKE 'DWAA-%-Sample' AND UPPER(status)='DRAFT' AND (image_url IS NULL OR image_url='')
+ ORDER BY bucket, title, variant_sku`);
+ return rows;
+}
+function page(data) {
+ const named = data.filter(r => r.bucket === 'NAMED');
+ const broken = data.filter(r => r.bucket === 'BROKEN');
+ const card = r => `<div class="c ${r.bucket === 'NAMED' ? 'named' : 'broken'}">
+ <div class="t">${esc(r.title)}</div>
+ <div class="sku">${esc(r.variant_sku)} · <span class="bs ${r.body_state === 'has body' ? 'ok' : 'bad'}">${esc(r.body_state)}</span></div>
+ <div class="tags">${esc(String(r.tags).replace(/[{}"]/g, '').slice(0, 160))}</div>
+ <a href="https://admin.shopify.com/store/${STORE}/products/${esc(r.pid)}" target="_blank" rel="noopener noreferrer">Shopify admin ↗</a>
+ </div>`;
+ return `<!doctype html><html><head><meta charset="utf-8"><title>DWAA-53 — orphan Jeffrey Stevens products</title>
+ <style>
+ body{font:14px/1.5 -apple-system,system-ui,sans-serif;margin:0;background:#0f1115;color:#e6e8ec}
+ header{padding:18px 22px;border-bottom:1px solid #232733;position:sticky;top:0;background:#0f1115;z-index:2}
+ h1{margin:0 0 6px;font-size:18px}.sub{color:#8b93a3;font-size:13px}
+ .wrap{padding:18px 22px}
+ .sec{margin:8px 0 4px;font-weight:600;color:#cdd3df;display:flex;align-items:center;gap:8px}
+ .pill{font-size:11px;padding:1px 8px;border-radius:999px}
+ .p-named{background:#123a24;color:#7ee2a8;border:1px solid #1f5c3a}
+ .p-broken{background:#3a1212;color:#e88;border:1px solid #5c1f1f}
+ .grid{display:grid;gap:10px;grid-template-columns:repeat(auto-fill,minmax(var(--cmin,300px),1fr));margin:10px 0 22px}
+ .c{border:1px solid #232733;border-radius:10px;padding:12px;background:#151924}
+ .c.named{border-color:#1f5c3a}.c.broken{border-color:#3a2020}
+ .t{font-weight:600;margin-bottom:4px}.sku{color:#8b93a3;font-size:12px;margin-bottom:6px}
+ .bs.ok{color:#7ee2a8}.bs.bad{color:#e88}
+ .tags{font-size:11px;color:#6f7789;margin-bottom:8px;max-height:34px;overflow:hidden}
+ a{color:#7aa2ff;text-decoration:none;font-size:12px}a:hover{text-decoration:underline}
+ .ctrl{display:flex;gap:14px;align-items:center;margin-top:8px}
+ input[type=range]{accent-color:#7aa2ff}
+ </style></head><body>
+ <header>
+ <h1>DWAA-53 — orphan Jeffrey Stevens sample-only DRAFT products</h1>
+ <div class="sub">${data.length} products · <b style="color:#7ee2a8">${named.length} NAMED</b> · <b style="color:#e88">${broken.length} BROKEN "Page not found"</b> · all DRAFT, image-less, no sellable sibling, DWAA-5##### maps to no catalog</div>
+ <div class="ctrl"><span class="sub">Density</span><input type="range" min="220" max="440" value="300" oninput="document.documentElement.style.setProperty('--cmin',(660-this.value)+'px')"></div>
+ </header>
+ <div class="wrap">
+ <div class="sec"><span class="pill p-named">NAMED · ${named.length}</span> real product names — the peel-and-stick / floor-tile items (option A would preserve these)</div>
+ <div class="grid">${named.map(card).join('')}</div>
+ <div class="sec"><span class="pill p-broken">BROKEN · ${broken.length}</span> "Page not found" — failed-scrape artifacts (violate the never-use-Page-Not-Found rule)</div>
+ <div class="grid">${broken.map(card).join('')}</div>
+ </div></body></html>`;
+}
+const srv = http.createServer(async (req, res) => {
+ if (req.headers.authorization !== AUTH) { res.writeHead(401, { 'WWW-Authenticate': 'Basic realm="dwaa53"' }); return res.end('auth required'); }
+ try { const data = await rows(); res.writeHead(200, { 'content-type': 'text/html; charset=utf-8' }); res.end(page(data)); }
+ catch (e) { res.writeHead(500); res.end('err: ' + e.message); }
+});
+srv.listen(0, '127.0.0.1', () => console.log('VIEWER http://127.0.0.1:' + srv.address().port + ' (admin / DW2024!)'));
diff --git a/chief-of-operations b/chief-of-operations
index 31c0a27..663b4a1 160000
--- a/chief-of-operations
+++ b/chief-of-operations
@@ -1 +1 @@
-Subproject commit 31c0a27831841f79c09fb917a051e3f7d0ed05b3
+Subproject commit 663b4a12ad42caa36d9659b5c8518a8ff4b1fbe9
diff --git a/designerwallcoverings b/designerwallcoverings
index fa74e2a..3418680 160000
--- a/designerwallcoverings
+++ b/designerwallcoverings
@@ -1 +1 @@
-Subproject commit fa74e2a3600367d5d3f5ba47559a3b9ad8d996a7
+Subproject commit 3418680f6abdc32dc4b41d95f89ce0e3e0c240ff
diff --git a/dw-cadence-next2 b/dw-cadence-next2
index 2993be0..b23fe27 160000
--- a/dw-cadence-next2
+++ b/dw-cadence-next2
@@ -1 +1 @@
-Subproject commit 2993be055b020d5ba02f4f9b701d80496f24767f
+Subproject commit b23fe2732709c823856ae0018bc7bf138f3dbdc0
diff --git a/exo-cluster-watchdog b/exo-cluster-watchdog
index 0db7e32..27ec06e 160000
--- a/exo-cluster-watchdog
+++ b/exo-cluster-watchdog
@@ -1 +1 @@
-Subproject commit 0db7e3291dc78e5cbeb4e28deae4b024d32f8e31
+Subproject commit 27ec06e8d9cc5e6f25d3e9ab15bf7923b3c876cb
diff --git a/fentucci-naturals b/fentucci-naturals
index ce29b0e..8b8222e 160000
--- a/fentucci-naturals
+++ b/fentucci-naturals
@@ -1 +1 @@
-Subproject commit ce29b0e76d1a8981b16d561de7ad9e7de93c9e2e
+Subproject commit 8b8222e449b1b1afa99e36830f533b99ee418ca6
diff --git a/gmc-titlefix b/gmc-titlefix
index a50c5ec..e2de8dd 160000
--- a/gmc-titlefix
+++ b/gmc-titlefix
@@ -1 +1 @@
-Subproject commit a50c5ec5c8c15f68ff2212a00b35253ee9cbe69d
+Subproject commit e2de8dd4622c02d333554f4d8be4c386bcf9d397
diff --git a/marketing-command-center b/marketing-command-center
index da91694..3bc1851 160000
--- a/marketing-command-center
+++ b/marketing-command-center
@@ -1 +1 @@
-Subproject commit da916947f2e4ac4e07371ac186410ebb6f7533f9
+Subproject commit 3bc18510223dd2e23c0f5cde779bc200cb8a635b
diff --git a/rentv b/rentv
index 4ed5100..212c4b8 160000
--- a/rentv
+++ b/rentv
@@ -1 +1 @@
-Subproject commit 4ed5100944d5a82de30c3719e50fd7598af3b650
+Subproject commit 212c4b852f2c998989c4fbb679f5d4c1406989bd
diff --git a/sku-check-skill b/sku-check-skill
index e0b25dc..4749456 160000
--- a/sku-check-skill
+++ b/sku-check-skill
@@ -1 +1 @@
-Subproject commit e0b25dc10051524504b00691ea4a32f6fa29c943
+Subproject commit 4749456160f9217567ef5fed226168280aa30cc2
diff --git a/ticket-monitor/proofs.json b/ticket-monitor/proofs.json
new file mode 100644
index 0000000..792aa4c
--- /dev/null
+++ b/ticket-monitor/proofs.json
@@ -0,0 +1,98 @@
+{
+ "TK-11644": {
+ "what": "Deleted 31,191 corrupted description_tag metafields (Tier A 19,053 + B 12,138 + 138 Tier C generic-blurb rows)",
+ "tests": "postfix-verify.mjs over 180,551 products: 0 survivors; 5 identity + 138 Tier C live-verified null",
+ "artifacts": "verification/TK-11644-postfix-verdict.json, final-verdict.json",
+ "commits": "2541178, 31ad41b, 225b848"
+ },
+ "TK-11655": {
+ "what": "Bulk-fixed 1,647 wallpaper SKUs missing roll_length -> 24.00",
+ "tests": "re-scan: 0 wallpaper products with empty roll_length",
+ "artifacts": "QuadrilleList.csv backup",
+ "commits": "-"
+ },
+ "TK-11449": {
+ "what": "Tobacco price residuals: 6/6 offers re-priced 4.25 + approved across 6 contexts",
+ "tests": "tk11449-close-verify.mjs live Merchant API: 6/6 PRESENT+APPROVED, 0 issues; orphan 404",
+ "artifacts": "tk11449-close-verify.mjs output",
+ "commits": "-"
+ },
+ "TK-11650": {
+ "what": "GMC landing canary severity split: disapproved=WARN (inert), approved/pending/unknown=FAIL (live wrong ads)",
+ "tests": "negative-test.sh 14/14 PASS (incl. TK-11650 cases 10-13)",
+ "artifacts": "negative-test.sh output",
+ "commits": "-"
+ },
+ "TK-11623": {
+ "what": "Root-caused backlog growth: title-regex over-matched single-roll SKUs; re-scoped to packaged metafield",
+ "tests": "canary re-run PASS: backlog 197->7 (-97%), 3 daily PASSes + manual re-run; 0 cadence regressions",
+ "artifacts": "canary latest.json + baseline",
+ "commits": "a2a9aef, d3d700b"
+ },
+ "TK-11816": {
+ "what": "Cron-fire-canary double WARN: BENIGN_EXIT_CODES=[1] for 2 jobs (signal-exit 1 contracts)",
+ "tests": "71/71 PASS incl. negative-first case; dead loops still FAIL, kills still WARN",
+ "artifacts": "test/tk11816-benign-exits.test.mjs",
+ "commits": "1879c5f"
+ },
+ "TK-11634": {
+ "what": "Dot screen router churn: px/cells mutually-exclusive gate -> cells-only ops + frontmost/pinned skips",
+ "tests": "replay harness 9/9 PASS; live 10+ passes routed 0 (was 1411/1412 passes issuing ops)",
+ "artifacts": "verification/tk11634-replay.py",
+ "commits": "uncommitted + .bak files"
+ },
+ "TK-10943": {
+ "what": "Meta-watchdog 5 blind spots closed (nested plists, dead-guard skip, _-dir priority, unwatched anchor, template plists)",
+ "tests": "17/17 tests PASS (incl. negative pins); watched 96->104 jobs",
+ "artifacts": "test/reconcile.test.mjs",
+ "commits": "b140350"
+ },
+ "TK-10689": {
+ "what": "Run Now button: verified working end-to-end (200 -> enqueue -> iTerm2 launch in 4s); fixed exit-code masking",
+ "tests": "live repro + healthz OK; rc=$? capture verified side-by-side",
+ "artifacts": "ticket-runner logs",
+ "commits": "fefe129"
+ },
+ "TK-11731": {
+ "what": "141 unpublished-approved dead ads EXCLUDED (your paste, 141/141 HTTP 200) + 456 repoints armed; serving_fail 835->739",
+ "tests": "canary live sample 8/8 dead confirmed; ledger 141 rows; rollback map 141",
+ "artifacts": "tk11731-apply-ledger-*.jsonl + rollback-map.json",
+ "commits": "tk11731-gmc-exclude-unpublished.mjs"
+ },
+ "TK-11758": {
+ "what": "6 Latigo Real Cork $0.00 variants DENY'd (free-checkout defect)",
+ "tests": "snapshot + canonical cross-check: 6/6 DENY confirmed",
+ "artifacts": "snapshot-apply-*.json",
+ "commits": "-"
+ },
+ "TK-11773": {
+ "what": "GMC exclude lists consolidated (475 GIDs); 6 residual unpublished",
+ "tests": "6/6 unpublished verified; restore map written",
+ "artifacts": "gmc-consolidated-exclude-restore-map.json",
+ "commits": "gmc-consolidated-exclude.js"
+ },
+ "TK-11844": {
+ "what": "27 PJ showroom offers withdrawn (already off channel + GMC-absent)",
+ "tests": "Shopify channel unpublish 27/27 alreadyOff; GMC API unresolvable",
+ "artifacts": "TK-11844-pj-channel-unpublish-rollback.json",
+ "commits": "-"
+ },
+ "TK-11633": {
+ "what": "69 archived-product offers verified inert (0 escalated, expiry backstop 10-11)",
+ "tests": "3x verification: full walk 61,954 offers + spot 6/6 + full 69/69",
+ "artifacts": "tk11633-*.mjs outputs",
+ "commits": "-"
+ },
+ "TK-10011": {
+ "what": "Reversible queue audit: queue effectively drained by overnight fleet (708 ledgered actions)",
+ "tests": "TK-11648 misfile un-done + verified; pm2 guard scan live 6/6",
+ "artifacts": "memory/2026-09-17-tk10011-reversible-subset.md",
+ "commits": "-"
+ },
+ "TK-11871": {
+ "what": "Wallcovering weight default 3.0 -> 2.0 lb (freight-tier drift fix) across guard + 3 twins; go-forward only, no re-stamp",
+ "tests": "py 14/14 + mjs 52/52 + jest 10/10 + tsc clean; 2,299-variant live sample (2lb=91.9%) ratified by TK-11803 DTD + Cody red-team",
+ "artifacts": "restore-map-20260917-1700/ (7 .ORIG + RESTORE.md)",
+ "commits": "3418680, b58f60ef, caae663"
+ }
+}
\ No newline at end of file
diff --git a/ticket-monitor/state.json b/ticket-monitor/state.json
index 0c84da7..acb60a4 100644
--- a/ticket-monitor/state.json
+++ b/ticket-monitor/state.json
@@ -7,7 +7,11 @@
"tokens": 1200000,
"model": "glm-5.3-flash",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "Deleted 31,191 corrupted description_tag metafields (Tier A 19,053 + B 12,138 + 138 Tier C generic-blurb rows)",
+ "tests": "postfix-verify.mjs over 180,551 products: 0 survivors; 5 identity + 138 Tier C live-verified null",
+ "artifacts": "verification/TK-11644-postfix-verdict.json, final-verdict.json",
+ "commits": "2541178, 31ad41b, 225b848"
},
"seed-11690": {
"id": "TK-11690",
@@ -25,7 +29,11 @@
"tokens": 7000000,
"model": "gemma4:31b",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "69 archived-product offers verified inert (0 escalated, expiry backstop 10-11)",
+ "tests": "3x verification: full walk 61,954 offers + spot 6/6 + full 69/69",
+ "artifacts": "tk11633-*.mjs outputs",
+ "commits": "-"
},
"seed-11449": {
"id": "TK-11449",
@@ -34,7 +42,11 @@
"tokens": 751000,
"model": "glm-5.3-flash",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "Tobacco price residuals: 6/6 offers re-priced 4.25 + approved across 6 contexts",
+ "tests": "tk11449-close-verify.mjs live Merchant API: 6/6 PRESENT+APPROVED, 0 issues; orphan 404",
+ "artifacts": "tk11449-close-verify.mjs output",
+ "commits": "-"
},
"seed-11635": {
"id": "TK-11635",
@@ -52,7 +64,11 @@
"tokens": 971000,
"model": "glm-5.3-flash",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "Bulk-fixed 1,647 wallpaper SKUs missing roll_length -> 24.00",
+ "tests": "re-scan: 0 wallpaper products with empty roll_length",
+ "artifacts": "QuadrilleList.csv backup",
+ "commits": "-"
},
"seed-11650": {
"id": "TK-11650",
@@ -61,7 +77,11 @@
"tokens": 1200000,
"model": "glm-5.3-flash",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "GMC landing canary severity split: disapproved=WARN (inert), approved/pending/unknown=FAIL (live wrong ads)",
+ "tests": "negative-test.sh 14/14 PASS (incl. TK-11650 cases 10-13)",
+ "artifacts": "negative-test.sh output",
+ "commits": "-"
},
"seed-11731a": {
"id": "TK-11731",
@@ -70,7 +90,11 @@
"tokens": 19000000,
"model": "glm-5.3-flash",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "141 unpublished-approved dead ads EXCLUDED (your paste, 141/141 HTTP 200) + 456 repoints armed; serving_fail 835->739",
+ "tests": "canary live sample 8/8 dead confirmed; ledger 141 rows; rollback map 141",
+ "artifacts": "tk11731-apply-ledger-*.jsonl + rollback-map.json",
+ "commits": "tk11731-gmc-exclude-unpublished.mjs"
},
"seed-11844": {
"id": "TK-11844",
@@ -79,7 +103,11 @@
"tokens": 1100000,
"model": "glm-5.3-flash",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "27 PJ showroom offers withdrawn (already off channel + GMC-absent)",
+ "tests": "Shopify channel unpublish 27/27 alreadyOff; GMC API unresolvable",
+ "artifacts": "TK-11844-pj-channel-unpublish-rollback.json",
+ "commits": "-"
},
"seed-11773": {
"id": "TK-11773",
@@ -88,7 +116,11 @@
"tokens": 1600000,
"model": "glm-5.3-flash",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "GMC exclude lists consolidated (475 GIDs); 6 residual unpublished",
+ "tests": "6/6 unpublished verified; restore map written",
+ "artifacts": "gmc-consolidated-exclude-restore-map.json",
+ "commits": "gmc-consolidated-exclude.js"
},
"seed-11758": {
"id": "TK-11758",
@@ -97,7 +129,11 @@
"tokens": 868000,
"model": "glm-5.3-flash",
"rate": 0,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "6 Latigo Real Cork $0.00 variants DENY'd (free-checkout defect)",
+ "tests": "snapshot + canonical cross-check: 6/6 DENY confirmed",
+ "artifacts": "snapshot-apply-*.json",
+ "commits": "-"
},
"agent:main:subagent:2a131066-4a19-4ef3-a345-912512d1d01f": {
"id": "TK-11633",
@@ -107,7 +143,11 @@
"durationMin": 11,
"tokens": 3664312,
"rate": 333119,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "69 archived-product offers verified inert (0 escalated, expiry backstop 10-11)",
+ "tests": "3x verification: full walk 61,954 offers + spot 6/6 + full 69/69",
+ "artifacts": "tk11633-*.mjs outputs",
+ "commits": "-"
},
"agent:main:subagent:dcc71754-6d06-4369-9e23-63c30c75d0ea": {
"id": "DW-Backlog-N",
@@ -138,7 +178,11 @@
"durationMin": 8,
"tokens": 1043690,
"rate": 130461,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "Root-caused backlog growth: title-regex over-matched single-roll SKUs; re-scoped to packaged metafield",
+ "tests": "canary re-run PASS: backlog 197->7 (-97%), 3 daily PASSes + manual re-run; 0 cadence regressions",
+ "artifacts": "canary latest.json + baseline",
+ "commits": "a2a9aef, d3d700b"
},
"agent:main:subagent:3fac98c7-2bc8-439d-826c-49388b2ac9fe": {
"id": "TK-11731",
@@ -149,7 +193,11 @@
"tokens": 74434,
"model": "glm-5.3-flash:cloud",
"rate": 74434,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "141 unpublished-approved dead ads EXCLUDED (your paste, 141/141 HTTP 200) + 456 repoints armed; serving_fail 835->739",
+ "tests": "canary live sample 8/8 dead confirmed; ledger 141 rows; rollback map 141",
+ "artifacts": "tk11731-apply-ledger-*.jsonl + rollback-map.json",
+ "commits": "tk11731-gmc-exclude-unpublished.mjs"
},
"agent:main:subagent:1e0d2857-da99-4962-8ddb-eff66f14b8ee": {
"id": "TK-11731",
@@ -160,7 +208,11 @@
"tokens": 2238759,
"model": "glm-5.3-flash:cloud",
"rate": 223876,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "141 unpublished-approved dead ads EXCLUDED (your paste, 141/141 HTTP 200) + 456 repoints armed; serving_fail 835->739",
+ "tests": "canary live sample 8/8 dead confirmed; ledger 141 rows; rollback map 141",
+ "artifacts": "tk11731-apply-ledger-*.jsonl + rollback-map.json",
+ "commits": "tk11731-gmc-exclude-unpublished.mjs"
},
"agent:main:subagent:a419467d-516e-47ae-8c58-ea0b854894c4": {
"id": "TK-11644",
@@ -171,7 +223,11 @@
"tokens": 7059227,
"model": "glm-5.3-flash:cloud",
"rate": 641748,
- "verdict": "FIXED"
+ "verdict": "FIXED",
+ "what": "Deleted 31,191 corrupted description_tag metafields (Tier A 19,053 + B 12,138 + 138 Tier C generic-blurb rows)",
+ "tests": "postfix-verify.mjs over 180,551 products: 0 survivors; 5 identity + 138 Tier C live-verified null",
+ "artifacts": "verification/TK-11644-postfix-verdict.json, final-verdict.json",
+ "commits": "2541178, 31ad41b, 225b848"
},
"agent:main:subagent:2217a446-4423-47cd-ba7f-e28e421df6fc": {
"id": "TK-11664",
@@ -191,7 +247,11 @@
"tokens": -1,
"model": "glm-5.3-flash:cloud",
"verdict": "FIXED",
- "rate": 0
+ "rate": 0,
+ "what": "Dot screen router churn: px/cells mutually-exclusive gate -> cells-only ops + frontmost/pinned skips",
+ "tests": "replay harness 9/9 PASS; live 10+ passes routed 0 (was 1411/1412 passes issuing ops)",
+ "artifacts": "verification/tk11634-replay.py",
+ "commits": "uncommitted + .bak files"
},
"agent:main:subagent:c74f315b-5745-4f4c-91c7-2f581ca89450": {
"id": "TK-00038",
@@ -241,7 +301,11 @@
"tokens": 6308596,
"model": "glm-5.3-flash:cloud",
"verdict": "FIXED",
- "rate": 1261719
+ "rate": 1261719,
+ "what": "141 unpublished-approved dead ads EXCLUDED (your paste, 141/141 HTTP 200) + 456 repoints armed; serving_fail 835->739",
+ "tests": "canary live sample 8/8 dead confirmed; ledger 141 rows; rollback map 141",
+ "artifacts": "tk11731-apply-ledger-*.jsonl + rollback-map.json",
+ "commits": "tk11731-gmc-exclude-unpublished.mjs"
},
"agent:main:subagent:50939e54-7a93-4f83-8f83-62a691e09f98": {
"id": "TK-00038",
@@ -281,7 +345,11 @@
"tokens": 3168976,
"model": "glm-5.3-flash:cloud",
"verdict": "FIXED",
- "rate": 633795
+ "rate": 633795,
+ "what": "Deleted 31,191 corrupted description_tag metafields (Tier A 19,053 + B 12,138 + 138 Tier C generic-blurb rows)",
+ "tests": "postfix-verify.mjs over 180,551 products: 0 survivors; 5 identity + 138 Tier C live-verified null",
+ "artifacts": "verification/TK-11644-postfix-verdict.json, final-verdict.json",
+ "commits": "2541178, 31ad41b, 225b848"
},
"agent:main:subagent:01843831-ace9-46d5-9f19-c68793479455": {
"id": "TK-11674",
@@ -311,7 +379,11 @@
"tokens": 152744,
"model": "glm-5.3-flash:cloud",
"verdict": "FIXED",
- "rate": 30549
+ "rate": 30549,
+ "what": "141 unpublished-approved dead ads EXCLUDED (your paste, 141/141 HTTP 200) + 456 repoints armed; serving_fail 835->739",
+ "tests": "canary live sample 8/8 dead confirmed; ledger 141 rows; rollback map 141",
+ "artifacts": "tk11731-apply-ledger-*.jsonl + rollback-map.json",
+ "commits": "tk11731-gmc-exclude-unpublished.mjs"
},
"agent:main:subagent:503117b1-7f20-4769-a259-83c12c635e57": {
"id": "TK-10944",
@@ -361,7 +433,11 @@
"tokens": 14048953,
"model": "glm-5.3-flash:cloud",
"verdict": "FIXED",
- "rate": 2809791
+ "rate": 2809791,
+ "what": "Reversible queue audit: queue effectively drained by overnight fleet (708 ledgered actions)",
+ "tests": "TK-11648 misfile un-done + verified; pm2 guard scan live 6/6",
+ "artifacts": "memory/2026-09-17-tk10011-reversible-subset.md",
+ "commits": "-"
},
"agent:main:subagent:96c49678-8426-4612-af1b-38ae0457641a": {
"id": "TK-11880",
@@ -391,7 +467,11 @@
"tokens": 39176,
"model": "glm-5.3-flash:cloud",
"verdict": "DECISION-READY",
- "rate": 0
+ "rate": 0,
+ "what": "Meta-watchdog 5 blind spots closed (nested plists, dead-guard skip, _-dir priority, unwatched anchor, template plists)",
+ "tests": "17/17 tests PASS (incl. negative pins); watched 96->104 jobs",
+ "artifacts": "test/reconcile.test.mjs",
+ "commits": "b140350"
},
"agent:main:subagent:e749c594-e55e-41ce-9570-c7761b6e634e": {
"id": "TK-00039",
@@ -578,6 +658,42 @@
"agent:main:subagent:81575ffa-34f6-44eb-89d7-58c6d5a7f240": {
"label": "DW-Backlog-Lane-3",
"startedAt": 1789688894757
+ },
+ "agent:main:subagent:59e98d29-b0bd-4de2-b518-bed8a3139dd0": {
+ "label": "DW-Backlog-Lane-4",
+ "startedAt": 1789689624810
+ },
+ "agent:main:subagent:9295e965-1b1a-44dd-8374-600550a08cfd": {
+ "label": "DW-Backlog-Lane-5",
+ "startedAt": 1789690269106
+ },
+ "agent:main:subagent:93f62dae-2f2d-448b-8efc-bec83a6e3b6d": {
+ "label": "TK-11731-Prop-Watch",
+ "startedAt": 1789690289109
+ },
+ "agent:main:subagent:937cd7a1-05ee-4c04-a7a5-70b07b4c302a": {
+ "label": "TK-11040-Momentum-Reconcile",
+ "startedAt": 1789690309114
+ },
+ "agent:main:subagent:00735067-d449-4814-9c27-e2087744fe21": {
+ "label": "TK-11041-Innovations-Verify",
+ "startedAt": 1789690309114
+ },
+ "agent:main:subagent:73f79725-6c2d-48a2-bc7c-3d13f12e817d": {
+ "label": "DW-Backlog-Lane-6",
+ "startedAt": 1789690936963
+ },
+ "agent:main:subagent:46f783e1-318a-48de-b359-b901e82639da": {
+ "label": "DW-Backlog-Lane-7",
+ "startedAt": 1789690951959
+ },
+ "agent:main:subagent:251b36bd-9079-4256-bd42-293c7f4b5b9f": {
+ "label": "TK-11731-Canary-Refresh-Watch",
+ "startedAt": 1789690971965
+ },
+ "agent:main:subagent:9dc79978-0948-417e-ba61-37b5c45e6241": {
+ "label": "DW-Backlog-Lane-8",
+ "startedAt": 1789691107740
}
}
}
\ No newline at end of file
diff --git a/ticket-system b/ticket-system
index fefe129..018f10f 160000
--- a/ticket-system
+++ b/ticket-system
@@ -1 +1 @@
-Subproject commit fefe129c5816bca450c37f219a40bd804ffc7983
+Subproject commit 018f10f5480525bfbbfc55c49082d4d54a3e49fa
diff --git a/tk11438-postgres-migration b/tk11438-postgres-migration
index 25ead1e..34e2124 160000
--- a/tk11438-postgres-migration
+++ b/tk11438-postgres-migration
@@ -1 +1 @@
-Subproject commit 25ead1ed8c86ff95711a4075482a1cb989e70782
+Subproject commit 34e21244f7b1281309fd1074330e8e1d129656c3
diff --git a/vendor-recrawl-dispatcher b/vendor-recrawl-dispatcher
index 0dc0526..915e3f9 160000
--- a/vendor-recrawl-dispatcher
+++ b/vendor-recrawl-dispatcher
@@ -1 +1 @@
-Subproject commit 0dc05260511c9b2b8c99c6bdab008914e60c430c
+Subproject commit 915e3f93f632242da08d967ee958c7bcc9e6d3ce
← 8c0a32f auto-data-snapshot: 2026-09-17T16:53:13 (9 data files) — Abr
·
back to Japan Enrich
·
Ignore .git-mirrors/ bare repos and ticket-monitor runtime s a0fa506 →