usesteady 0.1.0-alpha.55 → 0.1.0-alpha.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,448 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.57 - Workflow invocation shape ergonomics
4
+
5
+ **Released:** May 2026
6
+ **npm tag:** `alpha` - `npm install -g usesteady@alpha`
7
+
8
+ **Ergonomics/clarity release. No new capability surface beyond the
9
+ read-only `examples` catalog. No execution-model, planner, approval-
10
+ model, schema, operation-set, or dependency changes.**
11
+
12
+ ### What this release fixes
13
+
14
+ The alpha.56 walkthrough surfaced the highest-leverage onboarding
15
+ friction: operational confusion across the four workflow-invocation
16
+ surfaces.
17
+
18
+ - **F-A56-OPS-1** -- a first-time operator could not predict which
19
+ command (`--json`, `batch <file>`, `run <file>`) accepted which
20
+ JSON envelope shape (single op vs. op array vs. WorkflowSpec).
21
+ Help text covered each individually; no single surface explained
22
+ the mapping shape -> command.
23
+ - **F-A56-OPS-2** -- shape-mismatch error messages named only the
24
+ generic contract ("not valid JSON", "unknown or invalid
25
+ operation", "Workflow spec was not recognized"). They did not
26
+ point the operator at the matching command form OR at a copyable
27
+ example. Recovery required reading the help text and guessing.
28
+ - **F-A56-OPS-3** -- documenting "use this command for this shape"
29
+ required reading three separate help-text blocks and inferring
30
+ the mapping. There was no canonical reference for the mapping.
31
+
32
+ ### What ships
33
+
34
+ #### `usesteady examples` (new read-only subcommand)
35
+
36
+ Pure module `src/shell/cli/examples.ts`. Renders the three accepted
37
+ invocation shapes with their command form, when-to-use guidance,
38
+ and a minimal copyable JSON example each:
39
+
40
+ | id | command | shape |
41
+ | --- | --- | --- |
42
+ | `json` | `usesteady --json '<inline op>' --yes` | single JSON op object |
43
+ | `batch` | `usesteady batch <file> --yes` | JSON array of op objects |
44
+ | `run` | `usesteady run <file>` | WorkflowSpec object (also auto-wraps single op + array) |
45
+
46
+ Each pattern carries an identical canonical content shape (append-
47
+ to-`NOTES.md`) so the operator sees the same body in every form,
48
+ making the "what changed across shapes" question trivially
49
+ inspectable. Quick rule-of-thumb block reinforces shape -> command.
50
+ Sibling cross-references to `quickstart` / `capabilities` /
51
+ `templates` / `help` so the operator can navigate from one place.
52
+
53
+ Authority pattern matches `capabilities` / `quickstart` /
54
+ `templates`:
55
+
56
+ - in `PURE_SUBCOMMANDS` (never reads stdin, never executes);
57
+ - exempt from the `--output json` requires `--yes` rule (catalog
58
+ is informational, no execution to gate);
59
+ - deterministic byte-identical output across runs for a given
60
+ build;
61
+ - single-line stable-key JSON shape;
62
+ - never imports the planner, safety gate, executor, or approval
63
+ surface.
64
+
65
+ #### Shape-aware error guidance (three surfaces)
66
+
67
+ | Surface | Pre-alpha.57 first line (unchanged) | Alpha.57 addition |
68
+ | --- | --- | --- |
69
+ | `--json <bad>` invalid JSON | `Error: input is not valid JSON` | Names the `--json` contract ("single inline JSON op object (or an array)"); pointer to `usesteady examples`. |
70
+ | `batch <bad-json>` invalid JSON | same first line | Names the `batch` contract ("JSON array of op objects"); pointer to `usesteady examples`. |
71
+ | `--json` / `batch` invalid op | `Error: unknown or invalid operation: <op>` | Pointers to `usesteady capabilities` (per-op schema) and `usesteady examples`. |
72
+ | `run <file>` shape mismatch (`RUN_SPEC_ACCEPTED_SHAPES_MESSAGE`) | `Workflow spec was not recognized. Accepted shapes: ...` | New `Command form per shape:` block mapping each shape to its matching command; pointers to `usesteady examples`, `usesteady capabilities`, `usesteady --help`. |
73
+
74
+ Error classes (`invalid_json`, `invalid_op`), exit codes (2 / 1),
75
+ and the `--output json` machine-readable body are byte-identical.
76
+ Only human prose extended.
77
+
78
+ #### Pre-existing contract preserved
79
+
80
+ The `Accepted shapes` / `WorkflowSpec` / `JSON op` tokens that the
81
+ governance and shell shape-error regex suites assert against are
82
+ preserved verbatim:
83
+
84
+ - `tests/governance/input-surface-integrity.test.ts`
85
+ - `tests/shell/shell-workflow-spec.test.ts`
86
+
87
+ No machine consumer of these messages breaks.
88
+
89
+ #### README minimal addition
90
+
91
+ One new "Workflow Shapes" section between "Discover what UseSteady
92
+ can do" and "Core idea". Three-row table mapping shape -> command
93
+ -> when-to-use, plus the `usesteady examples` pointer. No other
94
+ README changes.
95
+
96
+ #### Help text
97
+
98
+ `HELP_TEXT` advertises `usesteady examples` and `usesteady examples
99
+ --output json` alongside the existing pure-subcommand block.
100
+
101
+ ### Friction -> Fix mapping (alpha.56-walkthrough-grounded)
102
+
103
+ | Friction observed | Fix in alpha.57 |
104
+ | --- | --- |
105
+ | Operator could not predict command-per-shape | `usesteady examples` catalog with explicit mapping |
106
+ | `--json` invalid JSON did not name the expected shape | Surface-aware addendum ("single inline JSON op object") + pointer |
107
+ | `batch` invalid JSON did not name the expected shape | Surface-aware addendum ("JSON array of op objects") + pointer |
108
+ | `--json` / `batch` invalid op forced help-text guessing | Pointer to `usesteady capabilities` for the per-op schema |
109
+ | `run <file>` shape mismatch did not name the matching command | `Command form per shape:` block + pointer to `usesteady examples` |
110
+ | Three help-text blocks required to derive shape -> command mapping | README "Workflow Shapes" table + canonical `examples` catalog |
111
+
112
+ ### Authority story
113
+
114
+ Pure module. Reuses `capabilities` / `quickstart` / `templates`
115
+ infrastructure (PURE_SUBCOMMANDS gate, `--yes` exemption,
116
+ deterministic-output contract). The new error-message hints are
117
+ strings only -- no new error classes, no new exit codes, no parser
118
+ changes, no envelope coercion. `loadWorkflowSpecFromFile` auto-wrap
119
+ behavior is byte-identical. The catalog reuses the same op-shape
120
+ conventions `jsonOpToIROperation` already accepts so no second
121
+ source of truth is introduced.
122
+
123
+ ### What does NOT change
124
+
125
+ - Execution engine: byte-identical to alpha.56.
126
+ - Planner: byte-identical.
127
+ - Approval model: byte-identical.
128
+ - Operation set: same 8 operation types.
129
+ - Parser: byte-identical -- no hidden coercion between formats,
130
+ no automatic envelope conversion, no AI generation.
131
+ - Dependencies: zero additions.
132
+ - Spec hash semantics, replay, audit envelope: byte-identical.
133
+ - Pre-alpha.57 valid `--json '<op>' --yes` and `run <WorkflowSpec
134
+ -file>` calls behave byte-identically.
135
+
136
+ ### Tests
137
+
138
+ `tests/shell/examples.test.ts` -- 26 new tests:
139
+
140
+ - Pure formatter unit tests: catalog order (json, batch, run),
141
+ command form per id, minimal-example JSON round-trip, frozen
142
+ catalog, determinism (I1, I6, I7).
143
+ - JSON render: single-line + trailing newline, valid JSON shape,
144
+ byte-determinism (I2).
145
+ - Text render: byte-determinism, sibling cross-references
146
+ (quickstart / capabilities / templates / help), explicit
147
+ read-only language (I3, I8).
148
+ - CLI integration: no `--yes` needed, `--output json` exempt from
149
+ `--yes`, `--help` form, global `HELP_TEXT` advertises the
150
+ subcommand, deterministic across invocations (I4, I5).
151
+ - Invocation-shape error guidance: `--json <bad>`, `batch <bad>`,
152
+ `--json <unknown op>`, `run <bad-spec>` -- each error keeps its
153
+ canonical first line AND adds the matching command-form hint
154
+ AND the pointer to `usesteady examples` (I9).
155
+ - Backward compatibility: a valid `--json` op and a valid `run
156
+ <WorkflowSpec>` do NOT regress to exit code 2.
157
+
158
+ Existing governance + shell shape-error suites pass unchanged.
159
+
160
+ Full suite: 4870 passed (was 4844; +26 from this suite), 4
161
+ pre-existing skips. No regressions in `governance`, `shell`,
162
+ `capabilities`, `templates`, `quickstart`, `phase-11d`,
163
+ `workflow-coordinator`, `shell-workflow-render`,
164
+ `system-will-preview`, or `adjacent-surface-consistency` suites.
165
+
166
+ ### Release engineering
167
+
168
+ - `npm run release:gate` continues to use `test:release` with
169
+ `--retry=2` for pre-existing test-order-dependent shell-spawn
170
+ flakes documented in alpha.52 release engineering notes.
171
+ - `check-stdin-ownership` continues to scan git-tracked files
172
+ only.
173
+
174
+ Implementation PR:
175
+
176
+ - `shortgigs/usesteady-core#311` -- workflow invocation shapes
177
+ (`examples` + shape-aware error guidance).
178
+
179
+ ### Posture after alpha.57
180
+
181
+ This is an **ergonomics stabilization release** -- not a capability
182
+ expansion. The two-track rhythm continues:
183
+
184
+ - **Integrity track** -- alpha.55 SYSTEM WILL Preview monitoring
185
+ window and alpha.56 adjacent-surface escape parity monitoring
186
+ window both remain open.
187
+ - **Capability track** -- alpha.57 monitoring window opens for the
188
+ `examples` catalog and the four shape-aware error messages.
189
+
190
+ Watch for:
191
+
192
+ - Operators still arriving at a shape-mismatch error without
193
+ reaching `usesteady examples` (could indicate the error-message
194
+ pointer is being missed; would be a wording iteration, not a
195
+ parser change).
196
+ - Confusion about the auto-wrap behavior of `run <file>` (it
197
+ accepts all three shapes; `--json` and `batch` only accept
198
+ their own). Surfaced by the `examples` catalog explicitly.
199
+ - Operators trying invocation shapes that aren't on the list
200
+ (e.g. `--json @file.json`, `run <ops-array-stdin>`); these
201
+ remain unsupported by design and should produce the existing
202
+ error paths.
203
+ - Any new render surface bypassing the four error-message
204
+ addendums.
205
+
206
+ When this monitoring window resolves without signal, the next
207
+ capability NOW pick remains section 3.11 workflow health
208
+ diagnostics or section 3.6 execution timeline per the prior
209
+ preference order, selected against observed signal.
210
+
211
+ ---
212
+
213
+ ## 0.1.0-alpha.56 - Adjacent-surface trust-language consistency
214
+
215
+ **Released:** May 2026
216
+ **npm tag:** `alpha` - `npm install -g usesteady@alpha`
217
+
218
+ **Trust-consistency refinement release. No new capability surface.
219
+ No authority-model change.** This is the final trust-clarity
220
+ stabilization pass before opening another capability surface.
221
+
222
+ ### What this release fixes
223
+
224
+ The alpha.55 walkthrough closed the SYSTEM WILL trust gap for the
225
+ `Preview:` block, but the real fresh-install pass exposed three
226
+ remaining gaps at adjacent pre-approval surfaces:
227
+
228
+ - **F-A55-1** -- pre-approval intake echo (`[ok] Step N: Append
229
+ "<value>" to <file>`) forged a second visual line whenever
230
+ `<value>` contained a newline. The Preview block immediately
231
+ below rendered the same content correctly. A user reading both
232
+ saw two different representations of the same string.
233
+ - **F-A55-2** -- `You asked:` line inside `task_ready` and
234
+ `task_conflict` had the same root cause: the canonical input
235
+ string carries user content verbatim, including embedded
236
+ newlines, and was rendered without inline escaping.
237
+ - **F-A55-3** -- pre-approval glyph was `[ok]`, which read as
238
+ "completed successfully" -- the same semantic shape the
239
+ COMPLETED frame's `[done]` glyph already owns. A first-time
240
+ user could conclude a step had already run before any approval
241
+ prompt.
242
+ - **F-A55-4** -- `templates append-to-file` safety note told the
243
+ operator to verify the target file exists, while runtime
244
+ creates the file if missing. Pre-existing wording misalignment;
245
+ not introduced by alpha.55 but visible at the new Preview
246
+ surface.
247
+
248
+ ### What ships
249
+
250
+ Render-only changes. No execution-engine, planner, approval-model,
251
+ operation-set, dependency, spec-hash, replay, or audit-envelope
252
+ changes.
253
+
254
+ #### One shared primitive
255
+
256
+ New module `src/shell/render-escape.ts`. Single source of truth for
257
+ the escape rule and for the lifecycle-stage glyphs every adjacent
258
+ surface uses.
259
+
260
+ - `escapeControlForInline(raw)` -- escapes `\t` / `\r` / `\n` as
261
+ C-style escape sequences. Leaves `\` and `"` alone so
262
+ canonical-form bytes are preserved (the intake parser depends
263
+ on those characters retaining grammar meaning).
264
+ - `LIFECYCLE_PARSED = "[parsed]"`, `LIFECYCLE_NEEDS_CONFIRMATION
265
+ = "[ ? ]"`, `LIFECYCLE_DONE = "[done]"` -- glyph constants for
266
+ the lifecycle stages.
267
+
268
+ Pure, deterministic, zero deps. The Preview block's `previewInline`
269
+ now delegates control-char escaping to this primitive so all
270
+ adjacent surfaces share one byte-level escape contract.
271
+
272
+ #### F-A55-1 -- intake echo escapes user content
273
+
274
+ `formatDraftTask` (`src/shell/cli/draft/intent-to-tasks.ts`)
275
+ routes every user value (`task.from` / `task.to` / `task.file` /
276
+ `task.rawText`) through `escapeControlForInline`. Multi-line
277
+ content can no longer forge a second visual line in the
278
+ pre-approval echo.
279
+
280
+ #### F-A55-2 -- You asked: anchor escapes user content
281
+
282
+ `truthfulInputDisplay` (`src/shell/workflow-render.ts`) escapes
283
+ the raw NL input via the shared primitive. The `structuredReplace`
284
+ path additionally escapes `\` and `"` first (existing behavior),
285
+ then control chars. `You asked:` is now single-line for any user
286
+ content while remaining truthful (the line still contains the
287
+ exact bytes the operator typed, only made inline-safe).
288
+
289
+ #### F-A55-3 -- lifecycle glyph clarification
290
+
291
+ Three intake-echo sites in `src/shell/cli/use-steady.ts`:
292
+
293
+ - `[ok] Step N: ...` -> `[parsed] Step N: ...`
294
+ - Section header changes from "I translated your request into
295
+ safe steps:" to "Parsed your request into safe steps (not yet
296
+ executed):"
297
+ - The `needs_confirmation` case becomes `[ ? ]` to stay visually
298
+ separated from parsed steps.
299
+
300
+ No state-machine change, no execution path change -- only the
301
+ visible tag and the section header.
302
+
303
+ #### F-A55-4 -- template / runtime wording alignment (PR #306)
304
+
305
+ Two `usesteady templates` safety-note misalignments closed:
306
+
307
+ - `append-to-file` safety note now says "If the target file does
308
+ not exist, it will be created" instead of "verify the target
309
+ file path exists before approving".
310
+ - `git-safe-review-flow` safety note now says `create` on an
311
+ existing file is refused with `target_exists` instead of
312
+ ambiguous "is treated as ambiguous".
313
+
314
+ Both notes now match runtime behavior in
315
+ `src/cursor/adapters/inprocess-adapter.ts`.
316
+
317
+ ### Lifecycle vocabulary after this release
318
+
319
+ | Stage | Glyph | Surface |
320
+ | --- | --- | --- |
321
+ | parsed/prepared | `[parsed]` | pre-approval intake echo |
322
+ | needs-confirm | `[ ? ]` | unparseable clause |
323
+ | review | numbered, no glyph | REVIEW frame |
324
+ | approve | `->` | SYSTEM WILL anchor |
325
+ | completed | `[done]` | terminal COMPLETED frame |
326
+
327
+ No two stages share a glyph. `parsed != approved != completed` is
328
+ now visually guaranteed.
329
+
330
+ ### Friction -> Fix mapping (walkthrough-grounded)
331
+
332
+ | Friction observed in alpha.55 walkthrough | Fix in alpha.56 |
333
+ | --- | --- |
334
+ | Intake echo forged visual lines for multi-line content | `formatDraftTask` routes through `escapeControlForInline` |
335
+ | `You asked:` line forged visual lines for multi-line content | `truthfulInputDisplay` routes through `escapeControlForInline` |
336
+ | `[ok]` glyph readable as "completed" before approval | `[parsed]` glyph + "(not yet executed)" header |
337
+ | Template safety notes contradicted runtime behavior | PR #306 wording alignment |
338
+ | Adjacent surfaces rendered same content differently | Shared escape primitive used by all three surfaces |
339
+
340
+ ### Authority story
341
+
342
+ The renderer remains pure. The shared escape primitive is a
343
+ 5-line pure function. The Preview block, the `You asked:` anchor,
344
+ and the intake echo all consume the same primitive so a single
345
+ byte-level escape contract governs every pre-approval render
346
+ surface. The workflow spec hash (Row 2) continues to cover the
347
+ spec end-to-end; the preview cannot drift from execution without
348
+ the hash mismatching and the run aborting before any filesystem
349
+ effect.
350
+
351
+ No new authority surface. No new operation type. No new approval
352
+ mode. No semantic interpretation, no AI summarization, no
353
+ autonomous decision-making.
354
+
355
+ ### What does NOT change
356
+
357
+ - Execution engine: byte-identical to alpha.55.
358
+ - Planner: byte-identical.
359
+ - Approval model: `task_ready` still produces a `confirm` prompt;
360
+ nothing is auto-approved.
361
+ - Operation set: same 8 operation types.
362
+ - Dependencies: zero additions.
363
+ - Spec hash semantics, replay, audit envelope: byte-identical.
364
+ - Pre-alpha.56 fixtures (no control chars in user content) render
365
+ byte-identically.
366
+
367
+ ### Tests
368
+
369
+ `tests/shell/adjacent-surface-consistency.test.ts` -- 46 new
370
+ tests:
371
+
372
+ - `escapeControlForInline` primitive: newline / CR / tab / CRLF /
373
+ multi-control / idempotence / determinism / single-line
374
+ guarantee / empty-string identity / backslash and quote
375
+ preservation.
376
+ - F-A55-1: `formatDraftTask` escapes every value for every op
377
+ type (append / prepend / replace / rename / create / delete /
378
+ run_command / needs_confirmation).
379
+ - F-A55-2: `task_ready` and `task_conflict` `You asked:` anchors
380
+ never include literal newlines; `structuredReplace` path
381
+ escapes from/to control chars.
382
+ - Backward compat: non-control input renders byte-identically to
383
+ pre-alpha.56 (phase-11d fixture regression guard).
384
+ - Cross-surface parity: 9 representative content samples; inline-
385
+ escaped bytes match across intake echo, `You asked:`, and
386
+ Preview content.
387
+ - Block vs inline: multi-line content uses Preview block mode AND
388
+ single-line escaped `You asked:` simultaneously.
389
+ - F-A55-3: glyph constants correct and pairwise distinct.
390
+ - Approval-semantics regression guard: `task_ready` still
391
+ produces a `confirm` prompt; render is pure.
392
+
393
+ PR #306 also added 4 wording-alignment tests on
394
+ `tests/shell/templates.test.ts`.
395
+
396
+ Full suite: 4844 passed, 4 pre-existing skips. No regressions in
397
+ `phase-11d` / `workflow-coordinator` / `shell-workflow-render` /
398
+ `system-will-preview` / `templates` / `quickstart` /
399
+ `capabilities` suites.
400
+
401
+ ### Release engineering
402
+
403
+ - `npm run release:gate` continues to use `test:release` with
404
+ `--retry=2` for pre-existing test-order-dependent shell-spawn
405
+ flakes documented in alpha.52 release engineering notes.
406
+ - `check-stdin-ownership` continues to scan git-tracked files
407
+ only.
408
+
409
+ Implementation PRs:
410
+
411
+ - `shortgigs/usesteady-core#306` -- template / runtime wording
412
+ alignment.
413
+ - `shortgigs/usesteady-core#309` -- adjacent-surface render
414
+ consistency (F-A55-1 / F-A55-2 / F-A55-3).
415
+
416
+ ### Posture after alpha.56
417
+
418
+ This is the **final trust-clarity stabilization pass** before
419
+ opening another capability surface. The two-track rhythm
420
+ continues:
421
+
422
+ - **Integrity track** -- monitoring window for the alpha.55
423
+ Preview block remains open; alpha.56 monitoring window opens
424
+ for the adjacent-surface escape parity and lifecycle glyph
425
+ vocabulary.
426
+ - **Capability track** -- when the alpha.56 monitoring window
427
+ resolves, the next bounded NOW pick remains section 3.11
428
+ workflow health diagnostics or section 3.6 execution timeline,
429
+ selected against observed signal.
430
+
431
+ Watch for:
432
+
433
+ - Confusion at the lifecycle vocabulary (parsed vs done vs review
434
+ vs approve).
435
+ - Operator running into the escape rule unexpectedly (e.g.
436
+ literal `\n` in a string they wanted to be a real newline).
437
+ - Adjacent-surface parity at large N (>5 tasks) review frames.
438
+ - Any new render surface added in the next capability work that
439
+ bypasses the shared primitive.
440
+
441
+ No proactive next capability surface this cycle. Trust-language
442
+ coherence is the deliverable.
443
+
444
+ ---
445
+
3
446
  ## 0.1.0-alpha.55 - SYSTEM WILL preview block (trust-clarity refinement)
4
447
 
5
448
  **Released:** May 2026
package/README.md CHANGED
@@ -298,6 +298,32 @@ The catalog is sourced from the same registry the executor uses. No second sourc
298
298
 
299
299
  ---
300
300
 
301
+ ## Workflow Shapes
302
+
303
+ UseSteady accepts three workflow invocation shapes. Pick the one that matches the JSON you have on hand:
304
+
305
+ | Shape | Command | When to use |
306
+ | --- | --- | --- |
307
+ | Single inline op | `usesteady --json '<op>' --yes` | One operation, typed at the command line. |
308
+ | Op array file | `usesteady batch <file> --yes` | A saved array of operations in a file. |
309
+ | WorkflowSpec file | `usesteady run <file>` | A named workflow with labeled tasks and NL inputs. |
310
+
311
+ Print the three patterns with minimal copyable JSON each:
312
+
313
+ ```bash
314
+ npx usesteady examples
315
+ ```
316
+
317
+ Or machine-readable:
318
+
319
+ ```bash
320
+ npx usesteady examples --output json
321
+ ```
322
+
323
+ Read-only; never executes anything. `run <file>` also auto-wraps a single JSON op or an op array, so a workflow file you keep on disk works the same way whichever shape you choose.
324
+
325
+ ---
326
+
301
327
  ## Core idea
302
328
 
303
329
  **AI proposes. You approve. Then it runs.**
@@ -20,6 +20,17 @@ export declare function translateIntent(text: string): DraftTask[];
20
20
  /**
21
21
  * Format a DraftTask as a human-readable one-liner for CLI display.
22
22
  * Unrecognised clauses are prefixed with "?" to signal they need review.
23
+ *
24
+ * alpha.56 / F-A55-1: every user-authored value embedded into this
25
+ * line (`task.from`, `task.to`, `task.file`, `task.rawText`) is
26
+ * routed through `escapeControlForInline` from the shared
27
+ * `render-escape` module — the same primitive the SYSTEM WILL
28
+ * Preview block uses. This guarantees tab/CR/newline characters
29
+ * in user content never forge a second visual line inside the
30
+ * pre-approval echo. The transform is identical across all
31
+ * adjacent surfaces (intake echo, You-asked anchor, Preview
32
+ * content), so a first-time user never sees the same content
33
+ * rendered two different ways before approval.
23
34
  */
24
35
  export declare function formatDraftTask(task: DraftTask): string;
25
36
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"intent-to-tasks.d.ts","sourceRoot":"","sources":["../../../../../src/shell/cli/draft/intent-to-tasks.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAIH,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,CAAC,MAAM,EAAgB,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,aAAa,GAAG,QAAQ,GAAG,SAAS,CAAC;IACjH,QAAQ,CAAC,IAAI,CAAC,EAAiB,MAAM,CAAC;IACtC,QAAQ,CAAC,EAAE,CAAC,EAAmB,MAAM,CAAC;IACtC,QAAQ,CAAC,IAAI,CAAC,EAAiB,MAAM,CAAC;IACtC,QAAQ,CAAC,kBAAkB,CAAC,EAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,OAAO,CAAC,EAAc,MAAM,CAAC;CACvC,CAAC;AAkFF,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,EAAE,CAIzD;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAavD;AAuBD;;;;;;;;;;;GAWG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAWxD;AAID;;;;;;GAMG;AACH,MAAM,MAAM,MAAM,GAAG;IACnB,QAAQ,CAAC,IAAI,EAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC1F,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,CAAC,EAAI,MAAM,CAAC;IACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,OAAO,GAAG,SAAS,GAAG,IAAI,CAkChE"}
1
+ {"version":3,"file":"intent-to-tasks.d.ts","sourceRoot":"","sources":["../../../../../src/shell/cli/draft/intent-to-tasks.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAMH,MAAM,MAAM,SAAS,GAAG;IACtB,QAAQ,CAAC,MAAM,EAAgB,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,aAAa,GAAG,QAAQ,GAAG,SAAS,CAAC;IACjH,QAAQ,CAAC,IAAI,CAAC,EAAiB,MAAM,CAAC;IACtC,QAAQ,CAAC,EAAE,CAAC,EAAmB,MAAM,CAAC;IACtC,QAAQ,CAAC,IAAI,CAAC,EAAiB,MAAM,CAAC;IACtC,QAAQ,CAAC,kBAAkB,CAAC,EAAG,IAAI,CAAC;IACpC,QAAQ,CAAC,OAAO,CAAC,EAAc,MAAM,CAAC;CACvC,CAAC;AAkFF,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,SAAS,EAAE,CAIzD;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,eAAe,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAcvD;AAuBD;;;;;;;;;;;GAWG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,SAAS,GAAG,MAAM,CAWxD;AAID;;;;;;GAMG;AACH,MAAM,MAAM,MAAM,GAAG;IACnB,QAAQ,CAAC,IAAI,EAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC1F,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,CAAC,EAAI,MAAM,CAAC;IACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;;GAIG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,OAAO,GAAG,SAAS,GAAG,IAAI,CAkChE"}
@@ -8,6 +8,7 @@
8
8
  * Returns best-effort results: unrecognised clauses get needs_confirmation=true
9
9
  * with rawText preserved so the caller never loses the original intent.
10
10
  */
11
+ import { escapeControlForInline } from "../../render-escape.js";
11
12
  // ─── Public API ───────────────────────────────────────────────────────────────
12
13
  /**
13
14
  * Translate a free-text intent string into a list of DraftTasks.
@@ -88,19 +89,31 @@ export function translateIntent(text) {
88
89
  /**
89
90
  * Format a DraftTask as a human-readable one-liner for CLI display.
90
91
  * Unrecognised clauses are prefixed with "?" to signal they need review.
92
+ *
93
+ * alpha.56 / F-A55-1: every user-authored value embedded into this
94
+ * line (`task.from`, `task.to`, `task.file`, `task.rawText`) is
95
+ * routed through `escapeControlForInline` from the shared
96
+ * `render-escape` module — the same primitive the SYSTEM WILL
97
+ * Preview block uses. This guarantees tab/CR/newline characters
98
+ * in user content never forge a second visual line inside the
99
+ * pre-approval echo. The transform is identical across all
100
+ * adjacent surfaces (intake echo, You-asked anchor, Preview
101
+ * content), so a first-time user never sees the same content
102
+ * rendered two different ways before approval.
91
103
  */
92
104
  export function formatDraftTask(task) {
105
+ const e = escapeControlForInline;
93
106
  if (task.needs_confirmation) {
94
- return `? ${task.rawText ?? "(unrecognized)"}`;
107
+ return `? ${e(task.rawText ?? "(unrecognized)")}`;
95
108
  }
96
109
  switch (task.action) {
97
- case "replace": return `Replace "${task.from}" -> "${task.to}" in ${task.file}`;
98
- case "rename": return `Rename ${task.from} -> ${task.to}`;
99
- case "create": return `Create ${task.file}`;
100
- case "delete": return `Delete ${task.file}`;
101
- case "run_command": return `Run: ${task.to}`;
102
- case "append": return `Append "${task.to}" to ${task.file}`;
103
- case "prepend": return `Prepend "${task.to}" to ${task.file}`;
110
+ case "replace": return `Replace "${e(task.from ?? "")}" -> "${e(task.to ?? "")}" in ${e(task.file ?? "")}`;
111
+ case "rename": return `Rename ${e(task.from ?? "")} -> ${e(task.to ?? "")}`;
112
+ case "create": return `Create ${e(task.file ?? "")}`;
113
+ case "delete": return `Delete ${e(task.file ?? "")}`;
114
+ case "run_command": return `Run: ${e(task.to ?? "")}`;
115
+ case "append": return `Append "${e(task.to ?? "")}" to ${e(task.file ?? "")}`;
116
+ case "prepend": return `Prepend "${e(task.to ?? "")}" to ${e(task.file ?? "")}`;
104
117
  }
105
118
  }
106
119
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"intent-to-tasks.js","sourceRoot":"","sources":["../../../../../src/shell/cli/draft/intent-to-tasks.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"intent-to-tasks.js","sourceRoot":"","sources":["../../../../../src/shell/cli/draft/intent-to-tasks.ts"],"names":[],"mappings":"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"}