@ritualai/cli 0.36.35 → 0.36.36

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.
@@ -1,5 +1,5 @@
1
1
  <!-- GENERATED from references/build-flow.md by apps/cli/scripts/generate-lite-flow.js — DO NOT EDIT. -->
2
- <!-- source-sha: 3cfb8c30115f21ac -->
2
+ <!-- source-sha: d34e2df8a4177dbe -->
3
3
 
4
4
  # /ritual lite — fast build (generated; do not edit)
5
5
 
@@ -233,7 +233,7 @@ If the user types `always audit for this build` mid-flow at the Step 9.6 prompt,
233
233
  Persist `auditMode` to `Exploration.metadata.auditMode` at `create_exploration` time (additive JSONB key — no schema migration) so `/ritual resume <exploration-id>` picks up the same mode the original build started with, and `/ritual lineage <exploration-id>` can render which gates ran + their outcomes.
234
234
 
235
235
 
236
- <!-- skill-options:no-gate-change: 2b (clarifying question) + 2c (generic terminal) are loud-fallback COPY variants of the same gate; options are unchanged (proceed | name-the-job) -->
236
+ <!-- skill-options:no-gate-change: 2b (low-confidence clarifying question — server sets clarifyingQuestion only when confidence <20% or it defaulted) + 2c (confident generic — accept and proceed) are COPY variants of the same gate; options are unchanged (proceed | name-the-job; 2b adds answer-the-question, which is a name-the-job correction) -->
237
237
  #### Step 0.7 — The Job gate: classify the job to be done
238
238
 
239
239
  **The FIRST tool call of a fresh build.** The server — not you — classifies the user's raw ask into
@@ -253,14 +253,18 @@ When this gate runs:
253
253
 
254
254
  1. **Call `mcp__ritual__classify_work_item`** with `raw_input` = the user's ask, verbatim. Do NOT
255
255
  classify yourself, do NOT pre-filter to development jobs. It returns
256
- `{ jtbd, workItemLabel, deliverableTemplate, why, confidence, isGenericFallback, personaCoverage }`.
256
+ `{ jtbd, workItemLabel, deliverableTemplate, why, confidence, isGenericFallback, clarifyingQuestion?, personaCoverage }`.
257
257
  `isGenericFallback` (and `confidence`) are the typed-uncertainty signal: when it's `true`, the
258
258
  result is the catch-all (`build-feature` / `produce-deliverable`) or the classifier wasn't sure —
259
- it is NOT a confident match, and which render variant you use in step 2 depends on it.
259
+ it is NOT a confident match, and which render variant you use in step 2 depends on it. On that
260
+ generic path the response also carries `clarifyingQuestion` — a plain-language question generated
261
+ from the user's ask, which step 2b renders verbatim to disambiguate toward a specific job.
260
262
 
261
263
  2. **Render the validation prompt** (rail stage `Job`). This gate is a plain-language VALIDATION of
262
264
  what you're about to build: restate the ask + the matched job in the user's words, then let them
263
- confirm or correct. Which variant you render depends on `isGenericFallback`.
265
+ confirm or correct. Route to a variant by the response: a **`clarifyingQuestion`** present → **2b**
266
+ (we're genuinely unsure — ask, but let them proceed); else `isGenericFallback` true → **2c** (a
267
+ confident generic build — accept and proceed); else → **2a** (a confident specific match).
264
268
 
265
269
  **2a — Confident match** (`isGenericFallback` is `false`): the classifier matched a specific job.
266
270
 
@@ -273,14 +277,17 @@ When this gate runs:
273
277
  Reply `proceed` if that's right, or tell me what to adjust.
274
278
  ```
275
279
 
276
- **2b — No specific job matched, FIRST time** (`isGenericFallback` is `true` the result is the
277
- catch-all `build-feature` / `produce-deliverable`, or `confidence` is `low` AND you have not yet
278
- asked the clarifying question this gate): do NOT present the catch-all as a verdict. This case
279
- should be RARE. Instead ask ONE clarifying question that elicits the missing signal what KIND of
280
- work this is grounded in their ask, with concrete examples that lead the reply. The examples
281
- span the catalog's functions so the user can self-identify; tailor the wording to their ask. This
282
- is the fallback step that lets us classify properly instead of defaulting blind (see
283
- `loud-fallback-escalation.md`).
280
+ **2b — Genuinely unsure: ask, but let them proceed** (the response carries a **`clarifyingQuestion`**
281
+ the server sets it ONLY when it was essentially guessing: numeric confidence below 20, or it
282
+ failed to classify and defaulted). A generic result alone does NOT land here only a *low-confidence*
283
+ one does; a confident generic build goes to **2c**. The clarifying question is a single plain-language
284
+ question the server generated FROM the user's specific ask. **Render it verbatim** it is grounded in
285
+ their words and leak-free. Do not rephrase it, do not append a menu, do not mention classification /
286
+ jobs / categories / confidence. The user has TWO ways out: answer to focus it, OR reply `proceed` to
287
+ continue with the deliverable. **Leak rule (load-bearing):** the rendered copy must NEVER say
288
+ "generic", "I couldn't classify", "fallback", "catch-all", or otherwise reveal that classification was
289
+ uncertain — that is internal state. Present it as a normal question about their ask. (See
290
+ `loud-fallback-escalation.md`.)
284
291
 
285
292
  ```text
286
293
  Ritual build
@@ -288,34 +295,35 @@ When this gate runs:
288
295
 
289
296
  You're looking to: {restate the ask in one short clause}
290
297
 
291
- I couldn't pin this to a specific job your ask reads as an outcome, and the flow scopes much
292
- better when I know what KIND of work it is. Which is closest (or say it in your own words)?
293
- • A coding-agent / MCP / skill capability — tooling the agent itself uses
294
- • A backend service or API
295
- • A frontend / UI feature
296
- • A refactor, migration, or infra / platform change
297
- • Something else — tell me in a sentence
298
+ {clarifyingQuestionverbatim}
298
299
 
299
- Reply with the closest fit (or your own words) and I'll lock the job.
300
+ Answer in a sentence or reply `proceed` and I'll continue with a {Deliverable}.
300
301
  ```
301
302
 
302
- When the user answers, call `mcp__ritual__classify_work_item` AGAIN with the same `raw_input` plus
303
- `correction` = their reply (and `previous_jtbd`), then re-render: **2a** if it now matched a
304
- specific job, otherwise **2c**.
303
+ (Rare degraded case you reached 2b but `clarifyingQuestion` is missing: ask which KIND of work it
304
+ is, with the same `proceed` option — • a coding-agent / MCP / skill capability a backend service
305
+ or API • a frontend / UI feature • a refactor, migration, or infra change • something else, in your
306
+ own words.)
305
307
 
306
- **2c Still generic after the clarifying question** (`isGenericFallback` is STILL `true` after the
307
- user answered 2b): do NOT ask again. Proceed as a generic build with the function-agnostic
308
- `Feature Brief` deliverable, and note the job can be renamed later. The job name stays generic
309
- never show a function-specific deliverable (e.g. "Frontend Web") for an unclassified build.
308
+ If the user ANSWERS, call `mcp__ritual__classify_work_item` AGAIN with the same `raw_input` plus
309
+ `correction` = their reply (and `previous_jtbd`), then re-render: **2a** if it now matched a specific
310
+ job, otherwise **2c**. If the user replies `proceed`, go straight to **2c** (accept the generic).
311
+
312
+ **2c — Accept and proceed** (`isGenericFallback` is `true` with NO `clarifyingQuestion` — a
313
+ confident-enough generic build — OR the user chose to proceed from 2b, OR a re-classification is still
314
+ generic): do NOT interrogate. Present the deliverable as a normal accept-and-proceed — **same clean
315
+ shape as 2a**. Internally the job stays generic and is renamable later, but **the rendered copy must
316
+ NEVER say "generic", "couldn't classify", "fallback", or otherwise reveal that** — that is internal
317
+ state. Just name what Ritual will produce for their ask. (Never show a function-specific deliverable
318
+ like "Frontend Web" for an unclassified build — only the function-agnostic `Feature Brief`.)
310
319
 
311
320
  ```text
312
321
  Ritual build
313
322
  ● Job ○ Scope ○ Discovery ○ Recommendations ○ Feature Brief
314
323
 
315
- You're looking to: {restate the ask in one short clause}
316
- I'll treat this as a generic build — deliverable: Feature Brief. You can rename the job later.
324
+ Ritual will produce a {Deliverable} for {restate the ask in one short clause}.
317
325
 
318
- Reply `proceed` to frame the problem.
326
+ Reply `proceed` if that's right, or tell me what to focus on.
319
327
  ```
320
328
 
321
329
  Do not render `personaCoverage` — persona representation is handled server-side now; only surface
@@ -2262,7 +2270,7 @@ The Build Brief is the markdown document the engineer reads RIGHT BEFORE writing
2262
2270
  Call `mcp__ritual__generate_build_brief` with:
2263
2271
 
2264
2272
  - `exploration_id`
2265
- - `icp` (optional defaults to the exploration template's primary ICP, then PM; pass `TECH_PM` for engineering-flavored explorations)
2273
+ - `icp` — **omit this.** The brief sources from the requirement set the flow already generated (on accept), whose ICP the server resolves from the exploration's persona/template. Passing a different ICP here forces a redundant requirement regeneration and a slow cold start. The engineering flavor is already baked into the server-resolved template — you do not need to (and should not) pass `TECH_PM` or any other ICP.
2266
2274
  - `recon_context` — the Step 3 `codebase_context_packet` plus any explicit phase/later candidates from discovery. Do not pass raw recon notes. This grounds "Codebase Anchors" in real file paths while keeping agent hypotheses auditable and non-authoritative.
2267
2275
  - `sources` — the **same** file-path array passed to `generate_considerations` and `generate_problem_statement` in Steps 4–5. Critical for KG consistency: the brief's "Previously Deferred" section only populates when overlapping prior implementations exist on these files.
2268
2276