From 1df25f75d677da192f1f0acb5b94ebb9300dc291 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 13 Jul 2026 11:03:43 +0200 Subject: [PATCH] docs(kaizen): chart the improvement potential as a mermaid xychart MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Before/after bars with the target as a line series; the caption keeps the nuance the chart can't draw (true before value is ∞, not 611 s). --- docs/kaizen/real-repo-sync.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/kaizen/real-repo-sync.md b/docs/kaizen/real-repo-sync.md index bb437b0..1a3b1ca 100644 --- a/docs/kaizen/real-repo-sync.md +++ b/docs/kaizen/real-repo-sync.md @@ -19,9 +19,17 @@ device — only the toy test repo has. Full measurement trail: **Measurement**: seconds from `:sync` to the snackbar, on the real `jcalixte/notes` clone on the device. -| Current method | Target (new method) | -|---|---| -| never completes — first commit freezes ~611 s, a reset re-enters the freeze (effectively ∞; 0 successful syncs ever) | ≤ ~10 s | +```mermaid +xychart-beta + title "Improvement potential" + x-axis ["Before kaizen — first commit ~611 s, never completes", "After kaizen — target ≤ ~10 s"] + y-axis "seconds, :sync → snackbar" 0 --> 650 + bar [611, 10] + line [10, 10] +``` + +The before bar understates the reality: a reset re-enters the freeze, so the +true value is ∞ — 0 successful syncs ever. The line is the ≤ ~10 s target. ## 2) Current method analysis