From e2a88d4231d69e12dac8af79af7c29718f11135d Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Tue, 14 Apr 2026 16:47:46 +1000 Subject: [PATCH 1/2] fix(staged): update log prefilled text to say "referenced" instead of "latest" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since `Re #note:` is now prepended, "the latest note" is misleading — "the referenced note" matches the actual behavior. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/staged/src/lib/features/branches/BranchCard.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/staged/src/lib/features/branches/BranchCard.svelte b/apps/staged/src/lib/features/branches/BranchCard.svelte index e807313f..55fca116 100644 --- a/apps/staged/src/lib/features/branches/BranchCard.svelte +++ b/apps/staged/src/lib/features/branches/BranchCard.svelte @@ -302,7 +302,7 @@ } if (latest.kind === 'note' && latest.title.toLowerCase().endsWith(' log')) { return { - commit: 'Read the latest note which contains logs. Look for any issues.', + commit: 'Read the referenced note which contains logs. Look for any issues.', note: '', commitRef: `Re: #note:${latest.id}`, noteRef: '', From 59b0aa8badec6446d2cb0667fee1a75e9d82cea8 Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Tue, 14 Apr 2026 16:51:20 +1000 Subject: [PATCH 2/2] fix(staged): simplify log prefilled text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove redundant first sentence per code review — the commit ref already points to the note, so just say 'Look for any issues.' --- apps/staged/src/lib/features/branches/BranchCard.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/staged/src/lib/features/branches/BranchCard.svelte b/apps/staged/src/lib/features/branches/BranchCard.svelte index 55fca116..0f4d838d 100644 --- a/apps/staged/src/lib/features/branches/BranchCard.svelte +++ b/apps/staged/src/lib/features/branches/BranchCard.svelte @@ -302,7 +302,7 @@ } if (latest.kind === 'note' && latest.title.toLowerCase().endsWith(' log')) { return { - commit: 'Read the referenced note which contains logs. Look for any issues.', + commit: 'Look for any issues.', note: '', commitRef: `Re: #note:${latest.id}`, noteRef: '',