From d0614e595f9da78760846da91cee1f0cc37545e4 Mon Sep 17 00:00:00 2001 From: Connor Byrne Date: Wed, 13 May 2026 15:49:48 -0700 Subject: [PATCH] fix(ext-api): remove decision refs from public API comments Per design review decision #1: strip internal decision references (D10c, D12) from JSDoc comments in the public API surface. Co-Authored-By: Claude Opus 4.5 --- src/extension-api/widget.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extension-api/widget.ts b/src/extension-api/widget.ts index 207cca9eea..eb9f46c8ba 100644 --- a/src/extension-api/widget.ts +++ b/src/extension-api/widget.ts @@ -142,7 +142,7 @@ export interface WidgetBeforeSerializeEvent { * - `'prompt'` — user is queueing a run (only prompt-relevant data sent to backend). * - `'clone'` — a copy/paste is happening; the framework already populated the * cloned entity's widget value from the source. Override only if the clone should - * differ from the source. (See D12 for scope copy semantics.) + * differ from the source. * - `'subgraph-promote'` — the widget is being promoted to a subgraph IO slot. */ readonly context: 'workflow' | 'prompt' | 'clone' | 'subgraph-promote' @@ -400,7 +400,7 @@ export interface WidgetHandle { * Subscribe to the widget's value changes. * * Replaces the v1 `widget.callback` pattern. - * Fires synchronously after the value is committed (per D10c). + * Fires synchronously after the value is committed. * * @returns A cleanup function to remove the listener. */